I have grid with a GroupSummaryView.
All is right.
I would like to put the result of a SummaryColumnConfig on the top of the GroupSummaryView.
I think it's in the setGroupRenderer like below but i don't know how get my SummaryColumnConfig value.
view.setGroupRenderer(new GridGroupRenderer() {
public String render(GroupColumnData data) {
String f = cm.getColumnById(data.field).getHeader();
String l = data.models.size() == 1 ? "Item" : "Items";
the summary is calculated after the gridgrouprenderer :-(
it looks that you have all models of a group in the GroupColumnData: data.models and you have to calculate the sum by yourself again.
This forum needs your help: you got hints from the community and now you have fixed your code? dont just reply with "now its fixed" or "i found the error"! please take the time to post also an detailed answer with the working code.