SmartClient Version: SC_SNAPSHOT-2012-03-15_v8.2p/PowerEdition Deployment (built 2012-03-15)
I have a ListGrid with the following attributes.
getDetailGridToolstrip() just returns a Toolstrip with some buttons on it to sit at the bottom of the grid.
The grid displays properly and the groupBy feature works fine.
If I then call setShowGroupSummaryInHeader(true) and groupBy(aField), the column headings disappear, but the other components remain.
I have a ListGrid with the following attributes.
Code:
detailGrid.setDataSource(detailDS); detailGrid.setShowFilterEditor(true); detailGrid.setAllowFilterExpressions(true); detailGrid.setShowGridSummary(true); detailGrid.setShowGroupSummary(true); detailGrid.setCanEdit(true); detailGrid.setSelectionAppearance(SelectionAppearance.CHECKBOX); detailGrid.setSelectionType(SelectionStyle.MULTIPLE); detailGrid.setEditEvent(ListGridEditEvent.DOUBLECLICK); detailGrid.setGridComponents(new Object[] { ListGridComponent.FILTER_EDITOR, ListGridComponent.HEADER, ListGridComponent.BODY, ListGridComponent.SUMMARY_ROW, getDetailGridToolstrip() }); detailGrid.setShowHover(true); detailGrid.setCanHover(true); detailGrid.setFields(getDetailGridFields()); detailGrid.setUseAllDataSourceFields(true);
The grid displays properly and the groupBy feature works fine.
If I then call setShowGroupSummaryInHeader(true) and groupBy(aField), the column headings disappear, but the other components remain.
Comment