Hi,
I am facing some issues in multi group functionality in Smart GWT.
The first problem is that when we upgraded the Smart GWT version to 4.0 the group summary stopped appearing. After googling I found that this is an issue with the smart GWT code. So I upgraded to the patched version and took the nightly build (2013-12-23). The group summary started appearing. Now there is another issue where the Group summary stops appearing if I use the GroupTitleRenderer.
This is not specific to any browser.
Code snapshot:
direction.setGroupTitleRenderer(groupTitleRenderer);
product.setGroupTitleRenderer(groupTitleRenderer);
private GroupTitleRenderer getGroupTitleRenderer() {
return new GroupTitleRenderer() {
@Override
public String getGroupTitle(Object value, GroupNode groupNode, ListGridField listGridField, String fieldName, ListGrid listGrid) {
return getGroupHeaderTitle(fieldName, value);
}
};
}
I am facing some issues in multi group functionality in Smart GWT.
The first problem is that when we upgraded the Smart GWT version to 4.0 the group summary stopped appearing. After googling I found that this is an issue with the smart GWT code. So I upgraded to the patched version and took the nightly build (2013-12-23). The group summary started appearing. Now there is another issue where the Group summary stops appearing if I use the GroupTitleRenderer.
This is not specific to any browser.
Code snapshot:
direction.setGroupTitleRenderer(groupTitleRenderer);
product.setGroupTitleRenderer(groupTitleRenderer);
private GroupTitleRenderer getGroupTitleRenderer() {
return new GroupTitleRenderer() {
@Override
public String getGroupTitle(Object value, GroupNode groupNode, ListGridField listGridField, String fieldName, ListGrid listGrid) {
return getGroupHeaderTitle(fieldName, value);
}
};
}
Comment