Hello,
Is it normal that the summary row also displays the 'empty message' in addition to the grid body? Can we get rid of it somehow?
Attached a screenshot for your convenience.
The code to illustrate this is as follows:
This is on v9.0p_2013-10-27/Pro Deployment (built 2013-10-27)
Is it normal that the summary row also displays the 'empty message' in addition to the grid body? Can we get rid of it somehow?
Attached a screenshot for your convenience.
The code to illustrate this is as follows:
Code:
public Canvas getViewPanel() {
ListGrid grid = new ListGrid();
grid.setLeaveHeaderMenuButtonSpace(true);
grid.setShowGridSummary(true);
ListGridField field1 = new ListGridField("field1", "This is some title");
grid.setFields(field1);
HLayout layout = new HLayout();
layout.setWidth100();
layout.setHeight(100);
layout.setMembers(grid);
return layout;
}
Comment