Hi there,
I've read in this forum that it's possible to obtain a value that the user changed on the Edit Form as follows:
But how would you do the same thing in the ItemUpdated handler?
There have been a few posts regarding obtaining a value from the grid in the ItemUpdated handler:
http://www.telerik.com/community/forums/aspnet-ajax/grid/get-item-name-from-grid.aspx
However, if the user modified the value, this method still returns the previous value.
Is there any way to obtain the value that the user entered in the TextBox from the GridUpdatedEventArgs instance?
Thanks,
Mark
I've read in this forum that it's possible to obtain a value that the user changed on the Edit Form as follows:
| if ((e.Item is GridEditFormInsertItem) && (e.Item.OwnerTableView.IsItemInserted)) |
| { |
| GridEditFormInsertItem editformItem = (GridEditFormInsertItem)e.Item; |
| TextBox textBox = (TextBox)editformItem[columnName].Controls[0]; |
| return textBox.Text; |
| } |
But how would you do the same thing in the ItemUpdated handler?
There have been a few posts regarding obtaining a value from the grid in the ItemUpdated handler:
http://www.telerik.com/community/forums/aspnet-ajax/grid/get-item-name-from-grid.aspx
However, if the user modified the value, this method still returns the previous value.
Is there any way to obtain the value that the user entered in the TextBox from the GridUpdatedEventArgs instance?
Thanks,
Mark