RS
Rajarajeswari S
Syncfusion Team
December 3, 2008 10:13 AM UTC
Hi LyLy,
Thanks for using Syncfusion products.
1) Gridgroupingcontrol rows stay unselected
If the ListBoxSelection mode is set to None, selection will not be happened on the Grid.
this.GridGroupingControl1.TableOptions.ListBoxSelectionMode = SelectionMode.None;
It will also remove the selection of first record, when the grid is displayed.
2) I'd like to remove the column with the little black triangle:
The column with the black triangle is called RowHeaderColumn, we can remove it using the below code snippet.
this.GridGroupingControl1.TableOptions.ShowRowHeader = false;
Please try the above and let us know if this helps you out.
Regards,
Raji
LH
Lucie Houel
December 3, 2008 11:05 AM UTC
Hi Raji,
It works great.
Thanks a lot.
LyLy