Internet Explorer -> Grid won't render

I am working on a grid at dev.brilliance.com/diamonds/diamond-results which has grown quite complex.



Does anyone know any reasons why this could be not rendering properly in IE?



Thanks,

Robert

mygrid.setHeader(",Shape, Carat, Color, Clarity, Cut, Report, Polish, Symmetry, Price, Details,");
You have 23 column in your grid, but you are setting width only for the 13 columns
mygrid.setInitWidths(“20,20,60,50,50,50,60,60,60,75,70,100,*”)
To fix this issue you have to set width for all of the 23 columns.

OK, I made the suggestions, but still no luck.

I.E. is giving me errors, like:

Webpage error details

User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; OfficeLiveConnector.1.3; OfficeLivePatch.0.0)
Timestamp: Tue, 15 Sep 2009 14:23:20 UTC


Message: Invalid argument.
Line: 69
Char: 69
Code: 0
URI: dev.brilliance.com/themes/brilli … Price.js?w

Code:

    mygrid = new dhtmlXGridObject(‘gridbox’);
    mygrid.setImagePath(’/images/grid/’);
    mygrid.setHeader(",Shape, Carat, Color, Clarity, Cut, Report, Polish, Symmetry, Price, Details");
    mygrid.setInitWidths(“20,20,60,50,50,50,60,60,60,75,70,100”)
    mygrid.setColTypes(“ro,ch,ro,ro,ro,ro,ro,ro,ro,ro,price,link”);       
    mygrid.attachHeader(",#connector_text_filter,#connector_text_filter,#connector_text_filter,#connector_text_filter,#connector_text_filter,#connector_text_filter,#connector_text_filter");
    mygrid.init();
    mygrid.setSkin(“modern”);   
    mygrid.setColSorting(",connector,connector,connector,connector,connector,server,server,connector,server,connector,connector");
    combo = mygrid.getCombo(9);
    mygrid.enableRowsHover(true,‘row_hover’);
    mygrid.attachEvent(“onRowSelect”,rowSelect);
    mygrid.attachEvent(“onMouseOver”,hoverOver);
    mygrid.attachEvent(“onXLE”,presentNumRows);
    mygrid.attachEvent(“onXLS”,startSpinner);

Please provide us complete sample where we can reproduce this issue including all files which you are using to initialize grid. (Please send such example directly to the support@dhtmlx.com)