Hi, using 11.2.
Manual CRUD =Off
I know that the RowUpdated event doesn't fire, but the RowUpdating does.
What I need to get is the updated value in the updating event. Is this possible?
Need to do this on the client side.
thanks!
Hi,
Yes this is possible:
void WebDataGrid1_RowUpdating(object sender, RowUpdatingEventArgs e)
{
//the updated row values
Hashtable newValues = e.Values;
}
Hope this helps.