Hi Isomorphic,
I have an issue with ListGrid Group Collapse/Expand button on IE8, IE9
then grid.setCollapseGroupOnRowClick(false).
(FF and Chrome is fine)
See screenshoot "grid.jpg" marked as 1.
SmartGWT version 5.0p (v10.0p_2014-10-21/Pro Deployment) (tested also on 5.1d (v10.1d_2015-07-27))
GWT-2.6.0
ListGrid:
this option expands initially, but still USER can't Collapse/Expand any Group:
I have an issue with ListGrid Group Collapse/Expand button on IE8, IE9
then grid.setCollapseGroupOnRowClick(false).
(FF and Chrome is fine)
See screenshoot "grid.jpg" marked as 1.
SmartGWT version 5.0p (v10.0p_2014-10-21/Pro Deployment) (tested also on 5.1d (v10.1d_2015-07-27))
GWT-2.6.0
ListGrid:
Code:
grid.setCanSort(false);
grid.setCanFreezeFields(false);
grid.setCanGroupBy(false);
grid.setCanAutoFitFields(false);
grid.setCanPickFields(false);
grid.setCanReorderFields(false);
grid.setAutoFetchData(true);
grid.setAlternateRecordStyles(false);
grid.setGroupByField("Z_GROUP1","Z_GROUP2","Z_GROUP3");
grid.setShowGridSummary(false);
grid.setShowGroupSummary(true);
grid.setShowGroupSummaryInHeader(true);
grid.setGroupByFieldSummaries("Z_GROUP3");
grid.setShowGroupTitleColumn(false);
grid.setGroupTitleField("Z_NAME");
grid.setCollapseGroupOnRowClick(false);
Code:
grid.setGroupStartOpen(GroupStartOpen.ALL)
Comment