Hi, to get all edit row values I'm using hashtable as I found somewhere in the forum (can not know how many columns I'll have and their names).
The problem, and to me is a very big issue, is that when i iterate the hasttable, column order is completely lost (actually I don't even understand what kind of sorting it does). How can I have them in the original columns order?
Thank you
The problem, and to me is a very big issue, is that when i iterate the hasttable, column order is completely lost (actually I don't even understand what kind of sorting it does). How can I have them in the original columns order?
Protected Sub RadGrid1_UpdateCommand(ByVal sender As Object, ByVal e As Telerik.Web.UI.GridCommandEventArgs) Handles RadGrid1.UpdateCommand
Dim editItem As GridEditableItem = CType(e.Item, GridEditableItem)
Dim newValues As Hashtable = New Hashtable()
e.Item.OwnerTableView.ExtractValuesFromItem(newValues, editItem)
For Each entry In newValues
'LogManager.WriteToDebugLog("c:\log\qwe\", "- newValues key" & entry.key & " value" & CType(entry.value, String))
Next
End Sub
Thank you