Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by richard white on Feb 03, 2009 14:58
open dhtmlx forum
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());
Answer posted by Support on Feb 04, 2009 03:31
You have missed columns width setting
  loginGrid.setHeader("Details,Information");
  loginGrid.setInitWidths("100,100");