Here is my code:
Protected Sub RadGrid1_InsertCommand(ByVal source As Object, ByVal e As Telerik.Web.UI.GridCommandEventArgs) Handles RadGrid1.InsertCommand
Dim insertItem As GridEditableItem = e.Item
Dim dic As New System.Collections.Hashtable()
insertItem.ExtractValues(dic)
'Data Stuff goes here
RadGrid1.Rebind()
End Sub
But when looking at dic("SerialNo") (defined as a string) it has a value of Nothing, and when I look at the other two values (DropDown Columns, bound to int fields) they are set to 1
What would cause this to come back with the null value? And no matter what options I select in the dropdowns, the values always come in as 1. What am I missing?
Thanks,
Steve
Protected Sub RadGrid1_InsertCommand(ByVal source As Object, ByVal e As Telerik.Web.UI.GridCommandEventArgs) Handles RadGrid1.InsertCommand
Dim insertItem As GridEditableItem = e.Item
Dim dic As New System.Collections.Hashtable()
insertItem.ExtractValues(dic)
'Data Stuff goes here
RadGrid1.Rebind()
End Sub
But when looking at dic("SerialNo") (defined as a string) it has a value of Nothing, and when I look at the other two values (DropDown Columns, bound to int fields) they are set to 1
What would cause this to come back with the null value? And no matter what options I select in the dropdowns, the values always come in as 1. What am I missing?
Thanks,
Steve