is there a way to retrieve the item index from a RadGrid without going through a command item? What I need to accomplish is just for example (code below) but the ItemIndex always returns as 0
I certain this was working before , i need to identify if the code base was changed , but any help is appreciated
Public Sub Test ()
For each item as GridDataItem in RadGrid1.Items
Dim i as integer = item.ItemIndex ' (Item.ItemIndex always returns as 0 )
Next
End Sub
I certain this was working before , i need to identify if the code base was changed , but any help is appreciated