I have a grid with the new GridDateTimeColumn
In my onUpdate I don't get any value for this column.
I tried this code
| Dim newValues As Hashtable = New Hashtable | |
| e.Item.OwnerTableView.ExtractValuesFromItem(newValues, editedItem) | |
| For Each entry As DictionaryEntry In newValues | |
| Dim MyKey As String = entry.Key | |
| Dim MyValue As String = entry.value | |
| Next |
I do get the loop and on MyKey I get the name of my column, but the value is nothing?
How can I extract the value out of this type of column?
I tried to search the forum for this but didn't find any related topics. :(