Categories | Question details Back To List | ||||||||
Table column titles and row cells alignment. Hello, Titles borders and cell borders in my table have wrong alignment, meaning that left border of data cells are not under the left border of the header cells (I wish I could post a screenshot to describe this). The table configured through XML: <?xml version="1.0" encoding="UTF-8"?> <rows> <head> <column align="center" sort="date" type="ro" width="*">Date</column> <column align="center" sort="str" type="ro" width="*">Error Code</column> <column align="center" sort="str" type="ro" width="*">Description</column> <column align="center" sort="str" type="ro" width="*">Reporter</column> <column align="center" sort="str" type="ro" width="*">Server</column> </head> <settings> <colwidth>px</colwidth> </settings> <row id="562"> <cell>INFO</cell> <cell>06/04/2008 17:44</cell> <cell>some data</cell> <cell>some data</cell> <cell>some data</cell> </row> </rows> What could be wrong? Regards, Yuri Answer posted by Support on Jun 04, 2008 10:03 Such situation may occur when a) some global css rules used against TD|TR|DIV elements ( they can override grid default settings and cause distortion ) b) grid initialized in some not rendered container ( issue common for split mode, must not occur in normal mode ) c) there is a known issue with calling adjustColumnSize against hidden column In case of plain initialization the same XML works correctly in all common browsers ( please check attached sample ) If problem still occurs for you - please send any kind of sample - you can send it directly to support@dhtmlx.com Attachments (1)
|