Rank: Member Groups: Member
Joined: 9/1/2010 Posts: 28
|
After editing a line, I want to force a postback to save the updates. In other words, I want to save changes after each update, not wait to save all changes.
I would have thought that hitting the Update button would have fired the ClientSideOnItemCommand but it does not.
It does for a normal button.
I can't figure out which event on the client side to fire to capture hitting "update" button.
Thanks
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,195
|
Hi,
The Grid won't fire ClientSideOnItemCommand when you click the Update button. Instead it would fire ClientSideAfterEditItem if full row mode is true, or the GridColumn's ClientSideEndEdit if full row mode is false.
Thanks!
|