IHB1
24 Aug 2009, 7:36 AM
Hi,
I need a Grid with Column Grouping, Summary Group operations and Aggregation Row together. I am trying to use GXT 2.0.1 Live Group Summary and AggregationRowConfig Grid Examples together for this requirement.
The issue is that the Aggregation Row is not aligning with the columns of the Grid, as shown in the screenshot below(the row at the bottom of the grid).
It seems that when I comment the line "grid.setView(summary);" in the code, the alignment is happening, but then obviously the grouping of columns is not happening.
EditorGrid<Task> grid = new EditorGrid<Task>(store, cm);
grid.setAutoExpandColumn("description");
grid.setBorders(true);
// grid.setView(summary);
grid.getView().setShowDirtyCells(false);
Is there a workaround for this issue?
Screenshot and Entrypoint class files:
I need a Grid with Column Grouping, Summary Group operations and Aggregation Row together. I am trying to use GXT 2.0.1 Live Group Summary and AggregationRowConfig Grid Examples together for this requirement.
The issue is that the Aggregation Row is not aligning with the columns of the Grid, as shown in the screenshot below(the row at the bottom of the grid).
It seems that when I comment the line "grid.setView(summary);" in the code, the alignment is happening, but then obviously the grouping of columns is not happening.
EditorGrid<Task> grid = new EditorGrid<Task>(store, cm);
grid.setAutoExpandColumn("description");
grid.setBorders(true);
// grid.setView(summary);
grid.getView().setShowDirtyCells(false);
Is there a workaround for this issue?
Screenshot and Entrypoint class files: