Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Summary row in grid also shows 'empty message'

    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 Files

    #2
    We've made a change to suppress the emptyMessage for the summary row as we agree this is unnecessary and looks wrong

    You can pick this up with the next nightly build (dated June 4 or above)

    Regards
    Isomorphic Software

    Comment


      #3
      Thanks for fixing!!

      Comment

      Working...
      X