Row above ColumnHeaderCells

When the ggc is bound to a datatable, a row appears between the groupdroparea and the columnheadercells. Is it possible to: 1. hide this row 2. modify the text within this row, including the number of items. Thanks for your Help, Simon

2 Replies

AD Administrator Syncfusion Team September 28, 2005 12:58 PM UTC

Hi Simon, The row that appears below the GridDropArea and the columnheader cells is called the caption row. To hide, set the showCaption property to false. this.gridGroupingControl1.TopLevelGroupOptions.ShowCaption=false; To change the display text and number of items, use the CaptionText property. this.gridGroupingControl1.TopLevelGroupOptions.CaptionText="Your text :" + 10 +" items"; Regards, Leo.


AD Administrator Syncfusion Team September 28, 2005 11:22 PM UTC

Thanks Leo, that works superbly!

Loader.
Up arrow icon