Hello,
This is giving me this error: Index was out of range. Must be nonnegative and less than the size of the collection. Parameter name: index
I've been trying to add the grid item through stored procedures, and I am having hard time getting the user input from RadGrid.
| Protected Sub MyConditions_ItemInserted(ByVal source As Object, ByVal e As Telerik.Web.UI.GridCommandEventArgs) |
| Dim editedItem As GridEditableItem = CType(e.Item, GridEditableItem) |
| Dim test As GridEditableItem = editedItem.OwnerTableView.GetInsertItem() |
| Dim test2 As String = test.GetDataKeyValue("Condition").ToString |
| End Sub |
I am trying to get the dataKeyValue called "Condition", which was given by user input during onItemInserted event..
