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!