Rank: Member Groups: Member
Joined: 3/3/2008 Posts: 17
|
I am using your Grid tool for an on-line order project. When selecting Edit then Update I need to make a calculation then post the new amount into one of the Grid columns. Is there a way I am not seeing to do this? Would love it if there is a way to fire a JavaScript function when Update is selected. I have checked the demo code and have not found a way to do this yet. Any help would be appreciated.
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
If your FullRowMode is true, the only way to do this is to use a CallbackPanel/UpdatePanel to do the update on the server side. If your FullRowMode is false, you can rely on ClientSideOnCellSelect to do the calculation, because a cell is submitted when focus is moved out of the cell (thus move into another cell).
Thanks
|