Multiple Row selection

Hi, How to select more than one row from grid. currently i am able to select only one row from grid. ex :Grid.CurrentObject. any idea Thanks and Regards shashi

1 Reply

AD Administrator Syncfusion Team July 4, 2006 03:22 PM UTC

Hi Shashi, You can set the ListBoxSelectionMode property of the grid control to SelectionMode.MultiSimple/ SelectionMode.MultiExtended. Here is a code snippet. // Multiple item can be selected this.gridControl1.ListBoxSelectionMode = SelectionMode.MultiSimple; //Multiple item can be selected , and the user can use the SHIFT ,CRTL, and arrow key to make the selection this.gridControl1.ListBoxSelectionMode = SelectionMode.MultiExtended; Let me know if this helps. Best Regards, Haneef

Loader.
Up arrow icon