I am converting my GridView into a RadGridView and am stuck on one part. I need to be able to traverse the grid and check for checked checkboxes. I am having trouble just traversing the grid.
In my old code, I used something like
For Each myRow As GridViewRow In myGrid.Rows()
For the radGrid I have since attempted the following:
For Each myRow As GridViewRow In myGrid.MasterTableView.DataKeyValues(myGrid.SelectedIndexes)("ID")
For Each myRow As GridDataItem In myGrid.MasterTableView.DataKeyValues(myGrid.SelectedIndex)("ID")
For Each myRow As GridIndexCollection In myGrid.MasterTableView.DataKeyValues(myGrid.SelectedIndexes)("ID")
The first one had an error due to it saying that GridViewRow couldn't accept the selected value as it was attempting to be converted into an integer.
The second one had an error due to RadGrid not having SelectedIndex as a method.
The last one had an error due to it saying that it couldn't accept integers as well.