I'm in the process of resolving the issues created by upgrading to Q1 2008 for all of my instances of the RadGridView control. In Q3 2007, I was able to loop through the selected rows and add the value of a specific cell to a generic list by doing the following:
Dim mPartNumberList As New List(Of String)
Dim selectedRows As List(Of GridViewRowInfo) = PartListRadGridView.SelectedRows
For Each row As GridViewRowInfo In selectedRows
mPartNumberList.Add(Convert.ToInt32(row.Cells(1).Value))
Next
This now fails. What is the equivalent in Q1 2008?
Thanks.