I have a radgrid and updating using EditMode=Popup.
When I get the newvalues the values are getting sorted in the order of 'Column name'.
How do I get the order that is displayed in the radgrid?
CODE:
If TypeOf e.Item Is GridEditFormItem Then
Dim id As Integer = Convert.ToInt32(e.Item.OwnerTableView.DataKeyValues(e.Item.ItemIndex)("rowId").ToString())
e.Item.OwnerTableView.ExtractValuesFromItem(newValues, editedItem)
When I get the newvalues the values are getting sorted in the order of 'Column name'.
How do I get the order that is displayed in the radgrid?
CODE:
If TypeOf e.Item Is GridEditFormItem Then
Dim id As Integer = Convert.ToInt32(e.Item.OwnerTableView.DataKeyValues(e.Item.ItemIndex)("rowId").ToString())
e.Item.OwnerTableView.ExtractValuesFromItem(newValues, editedItem)