Categories | Question details Back To List | ||
dhtmlx grid failed on IE but works on FF Hi I am working on dynamically updating a dhtmlxgrid attached to a layout.this works fine with the firefox but not with IE. IE only show the header of the first grid and failed to show the rest of the data. See this link http://epiccompliance.com/epic/ You may check the xml produce by the php script through firebug. Thanks Florante Answer posted by Support on Aug 20, 2009 06:47 Inside configuration xml , change the next <column width="50px" type="ro" align="" sort="str">ID</column> <column width="280px" type="ro" align="" sort="str">Customer Name</column> <column width="350px" type="ro" align="left" sort="str">Customer Address</column> <column width="100px" type="ro" align="left" sort="str">Due Date</column> <column width="100px" type="ro" align="left" sort="na">Scheduled</column> as <column width="50" type="ro" align="" sort="str">ID</column> <column width="280" type="ro" align="" sort="str">Customer Name</column> <column width="350" type="ro" align="left" sort="str">Customer Address</column> <column width="100" type="ro" align="left" sort="str">Due Date</column> <column width="100" type="ro" align="left" sort="na">Scheduled</column> width attribute must contain just a numeric value , without "px" postfix |