IE dhtmlxgrid problem

Hi



we have coded our site using layouts and grids and works great in firefox and are now opening it up to IE



we are using IE7 and have tried it in IE6 and are getting an ‘Invalid argument’ error. it is happening on the .init line of code below. can you tell us what we are doing wrong please, thanks



loginGrid = accordion.cells(“login”).attachGrid();

loginGrid.setHeader(“Details,Information”);

loginGrid.setColTypes(“ro,passw”);

loginGrid.setNoHeader(true);

loginGrid.init();



loginGrid.addRow(“email”,“Email:”,loginGrid.getRowsNum());

loginGrid.setCellExcellType(“email”,1,“ed”);

loginGrid.addRow(“password”,“Password:”,loginGrid.getRowsNum());

You have missed columns width setting
loginGrid.setHeader(“Details,Information”);
loginGrid.setInitWidths(“100,100”);