This question is locked. New answers and comments are not allowed.
I have my grid using a dynamic object and I set for one of the properties of that object the UIHint attribute with my dropdown editor template in it, so:
It renders ok when I enter the edit mode of the cell.
My problem is, when I select a new value for it, the cell has a mark that the value has changed, but it shows the old value and not the new one.
Do I have to update the cell value using any of the client events? If so the event I should use is OnSave (I think) but what code should I use in my javascript function?
If I don't have to use any client event, what approach should I use then?
<UIHint("DropDown")>public string Item { get; set; }My problem is, when I select a new value for it, the cell has a mark that the value has changed, but it shows the old value and not the new one.
Do I have to update the cell value using any of the client events? If so the event I should use is OnSave (I think) but what code should I use in my javascript function?
If I don't have to use any client event, what approach should I use then?