How to set dynamic height for rich:extendedDataTable rows?

ahmednabil88

In my web application, I have extendedDataTable which shows records.

<rich:extendedDataTable id="tableID"
    ...>
    <rich:column width="110px">
        ...
    </rich:column>
    <rich:column width="110px">
        ...
    </rich:column>
</rich:extendedDataTable>

The issue is that
Some records have column value may be in multi-lines
And the row height is not increased dynamically
so some of data is not viewed
enter image description here

So Need to know how to set dynamic height for rich:extendedData rows?
Then the row height will be increase dynamicly when needed

Makhiel

You can override the height for .rf-edt-c.

<rich:extendedDataTable styleClass="myTable" … />

.myTable .rf-edt-c {
    height: 100%;
} 

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

rich:extendedDataTable custom css

From Dev

Render rich:extendedDataTable

From Dev

How to Set Dynamic Height jQuery

From Dev

How to set a dynamic height on content for each step?

From Dev

How to set dynamic height with Visual Format Language

From Dev

How to set QListView rows height permanently

From Dev

How to set height constraint of UITableView according to dynamic height cells?

From Dev

rich:extendedDataTable disable column drag and drop

From Dev

Dynamic height of table is not set

From Dev

How to set rows and columns of a JTable Dynamic

From Dev

How to set rows and columns of a JTable Dynamic

From Dev

How to set Onclick dynamic to generated rows?

From Dev

How do I get dynamic change of height in rows or cells?

From Dev

How to set content area div height with dynamic header div

From Dev

how to set dynamic height of a Collection View, the 'view' not the 'cells'?

From Dev

how to set my height to 100% with a dynamic table inside?

From Dev

How to set content area div height with dynamic header div

From Dev

swift how to set dynamic height when having multiple custom UITableViewCells

From Dev

How to set Dynamic width and height for an inflated view(button)

From Dev

How to set the Dynamic height to list view in fragment activity..?

From Dev

jQuery set height of a div to the 'dynamic height' of another

From Dev

Set TableView height by the number or rows

From Dev

Set TableView height by the number or rows

From Dev

RichFaces 4 ExtendedDataTable - Selecting rows programmatically

From Dev

Changing height dynamic for Table Rows , CustomCell and Layout

From Dev

Dynamic width and fixed height of rows in JPanel

From Dev

Rich text editor (tinymce) images - how to disable auto height and width?

From Dev

Dynamic reports -set width and height of report

From Dev

set Dynamic width and height of collection view cell

Related Related

  1. 1

    rich:extendedDataTable custom css

  2. 2

    Render rich:extendedDataTable

  3. 3

    How to Set Dynamic Height jQuery

  4. 4

    How to set a dynamic height on content for each step?

  5. 5

    How to set dynamic height with Visual Format Language

  6. 6

    How to set QListView rows height permanently

  7. 7

    How to set height constraint of UITableView according to dynamic height cells?

  8. 8

    rich:extendedDataTable disable column drag and drop

  9. 9

    Dynamic height of table is not set

  10. 10

    How to set rows and columns of a JTable Dynamic

  11. 11

    How to set rows and columns of a JTable Dynamic

  12. 12

    How to set Onclick dynamic to generated rows?

  13. 13

    How do I get dynamic change of height in rows or cells?

  14. 14

    How to set content area div height with dynamic header div

  15. 15

    how to set dynamic height of a Collection View, the 'view' not the 'cells'?

  16. 16

    how to set my height to 100% with a dynamic table inside?

  17. 17

    How to set content area div height with dynamic header div

  18. 18

    swift how to set dynamic height when having multiple custom UITableViewCells

  19. 19

    How to set Dynamic width and height for an inflated view(button)

  20. 20

    How to set the Dynamic height to list view in fragment activity..?

  21. 21

    jQuery set height of a div to the 'dynamic height' of another

  22. 22

    Set TableView height by the number or rows

  23. 23

    Set TableView height by the number or rows

  24. 24

    RichFaces 4 ExtendedDataTable - Selecting rows programmatically

  25. 25

    Changing height dynamic for Table Rows , CustomCell and Layout

  26. 26

    Dynamic width and fixed height of rows in JPanel

  27. 27

    Rich text editor (tinymce) images - how to disable auto height and width?

  28. 28

    Dynamic reports -set width and height of report

  29. 29

    set Dynamic width and height of collection view cell

HotTag

Archive