Hello,
I found a bug regarding Listgrid summary row.
The row numbers and checkbox are shown in summarygrid row too.
This happens ONLY when I set a summaryrowdatasource.
Here is my code
SmartgwtVersion: 3.0p.2012-03-09
browser: firefox 10
I found a bug regarding Listgrid summary row.
The row numbers and checkbox are shown in summarygrid row too.
This happens ONLY when I set a summaryrowdatasource.
Here is my code
Code:
ListGrid listGrid = new ListGrid();
listGrid.setDataSource(DataSource.get("country"));
listGrid.setWidth(600);
listGrid.setHeight(1020);
listGrid.setAutoFetchData(true);
listGrid.setShowGridSummary(true);
listGrid.setShowRowNumbers(true);
listGrid.setSelectionType(SelectionStyle.SIMPLE);
listGrid.setSelectionAppearance(SelectionAppearance.CHECKBOX);
listGrid.setSummaryRowDataSource(DataSource.get("country"));
Code:
<fields> <field name="countryId" type="number" primaryKey="true" hidden="false"/> <field name="countryName" type="text"/> </fields>
browser: firefox 10
Comment