Hello,
I created a custom AJAX control and try to update values in InPlace edit mode. But each time I call masterView.updateItem() function, there is no updated data in the list of new values. I use ItemCommand method and parse values like this:
Thank you.
I created a custom AJAX control and try to update values in InPlace edit mode. But each time I call masterView.updateItem() function, there is no updated data in the list of new values. I use ItemCommand method and parse values like this:
if (e.CommandName == Grid.UpdateCommandName) { GridEditableItem editItem = (GridEditableItem)e.Item; Hashtable newValues = new Hashtable(); editItem.ExtractValues(newValues); }What should I do in my control to make new values seen by grid?
Thank you.