Quantcast
Channel: SmartClient Forums
Viewing all articles
Browse latest Browse all 4756

Summary row in grid also shows 'empty message'

$
0
0
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:

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;
        }

This is on v9.0p_2013-10-27/Pro Deployment (built 2013-10-27)

Attached Images
File Type: jpg screenshot_1.jpg (5.1 KB)

Viewing all articles
Browse latest Browse all 4756

Trending Articles