FR
Francisco
November 3, 2011 07:00 PM UTC
Setting the 'AllowSection' on the grid it doesn't work.
It is possible select many rows, many columns on the GridDataControl?
Best
Francisco
RA
Rajasekar
Syncfusion Team
November 21, 2011 09:15 AM UTC
Hi Francisco,
You can achieve your requirement by using the below code snippet,
For Multiple Row Selection:
dataGrid.ListBoxSelectionMode = GridSelectionMode.MultiExtended;
dataGrid.AllowSelection = GridSelectionFlags.Row;
For Multiple Column Selection:
dataGrid.ListBoxSelectionMode = GridSelectionMode.None;
this.dataGrid.AllowSelection = GridSelectionFlags.Column | GridSelectionFlags.Multiple | GridSelectionFlags.Shift;
Please let us know if you have any queries.
Thanks,
Rajasekar