I've got a rather large ListGrid that I default to using grouping. However, I'm unable to collapse the groups (regardless of the number of records). Any ideas? Here's the group-related code:
Several of my fields in the grid have setCanGroupBy( false ) set on them, if that makes a difference. I seem to remember this working before and I can't remember when it stopped working. Has anyone else run into this before?
Code:
// To handle grouping with large numbers of records grid.setGroupByMaxRecords( 4000 ); grid.setGroupStartOpen( "all" ); // Group by status by default grid.setGroupByField( "status" );
Comment