I have a grid with the a skin applied (dhx_blue). The grid “multiline” property is True, and I am setting the row height in CSS on the page using this:
div.gridbox table.obj tr {
height: 30px;
}
That works in IE, however in both Firefox and Chrome, the row height expands to display the entire content of the longest cell value.
Is there another CSS definition I should use for those browsers to make the appearance consistent?
Thank you for the suggestion; however, I do want the text to wrap, which is why I set “multiline” to True. In Internet Explorer 8, this works as desired – the text wraps in the cell, two lines of text are visible, and the extra text is clipped.
Non-IE browsers appear to ignore or override the “height: 30px” style on the table row, so I am wondering if there is some other CSS solution to enforce the height specification while retaining the multiline effect.
Here is how a section of the grid appears in IE with multiline True and row height 30px:
Here is the same section in Firefox:
If it can’t be done, I understand… just feels like I’m missing something obvious.