How do I show/hide Row Headers in GridGroupingControl?
(Views :1484)

The visibility of the Row headers for a particular table can be controlled by the ShowRowHeader property in the TableOptions settings.

C#
//Hide Row Headers
this.GridGroupingControl1.TableOptions.ShowRowHeader = false;
VB
'Hide Row Headers
Me.GridGroupingControl1.TableOptions.ShowRowHeader = False

Sample:

http://websamples.syncfusion.com/samples/KB/Grid.Web/6.1.0.34/GGCHideRowHeader/main.htm

::adCenter::