Articles in this section
Category / Section

How can I get the selected rows in the Grid?

1 min read

 

You can use the Table.SelectedRecords collection of the GridGroupingControl to the get the selected rows.

There are two types of selection modes in the GridGroupingControl.

One is inherited from the GridControlBase and has no knowledge of any specific functionalities of the GridGroupingControl. This selection support can be turned on by setting the grid.tableOptions.AllowSelections to something other than None. This selection functionality raises events like the grid.TableModel.SelectionChanging/Changed.

The second selection support is a record based selection support that is specific to the GridGroupingControl. This selection support is turned on by setting the grid.TableOptions.AllowSelections to None and setting the grid.TableOptions.ListBoxSelectionMode to something other than None. This selection support raises the grid.SelectedRecordsChanged/Changing rather than raising the grid.TableModel.SelectionChanging/Changed events.

C#

foreach(SelectedRecord rec in this.gridGroupingControl1.Table.SelectedRecords)Console.WriteLine(rec.Record.ToString());

VB

Dim rec As SelectedRecordFor Each rec In Me.gridGroupingControl1.Table.SelectedRecordsConsole.WriteLine(rec.Record.ToString())Next rec

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied