I'm trying to pull the data from the Id column of the selected row within the update command as follows
This allows me to get the row index but not the data within the id column.
Any suggestions are greatly appreciated.
Thanks.
Protected Sub radgrid_Update(ByVal sender As Object, ByVal e As GridCommandEventArgs) Handles radgrid.UpdateCommand
Dim selectedRow As GridEditFormItem = DirectCast(e.Item, GridEditFormItem)
Dim rowNo As Integer = selectedRow.ItemIndex
Dim id As String = selectedRow.Item("id").Text
End Sub
This allows me to get the row index but not the data within the id column.
Any suggestions are greatly appreciated.
Thanks.