Hi All
I am trying to use check box in ListGrid with 100 rows and 30 columns on IE 6/7, and it takes roughly about 25-30 sec to select all / deselect all. This is a major performance issue. I am using following
smartgwt-1.1
gwt-windows-1.6.4
Reading other developer's suggestions I have used setBaseStyle("tallCell")
I even tried live grid sample and it says: "Can't select that many records at once. Please try working in smaller batches".
Is there a bug with ListGrid check box implementation on IE ? or is it a default behavior.
Any help in improving performance would be appreciated.
Thanks
I am trying to use check box in ListGrid with 100 rows and 30 columns on IE 6/7, and it takes roughly about 25-30 sec to select all / deselect all. This is a major performance issue. I am using following
smartgwt-1.1
gwt-windows-1.6.4
Reading other developer's suggestions I have used setBaseStyle("tallCell")
Code:
grid.setWrapCells(true);
grid.setFixedRecordHeights(false);
grid.setBaseStyle("tallCell");
grid.setAlternateRecordStyles(false);
grid.setShowAllRecords(false);
grid.setShowRollOver(false);
grid.setSelectionType(SelectionStyle.SIMPLE);
grid.setSelectionAppearance(SelectionAppearance.CHECKBOX);
Is there a bug with ListGrid check box implementation on IE ? or is it a default behavior.
Any help in improving performance would be appreciated.
Thanks
Comment