Rank: Member Groups: Member
Joined: 10/8/2007 Posts: 18
|
I would like to compare the cell value once the user clicks off the cell to another cell value that is static, but you don't seem to have any methods on the clientside that fires when the user leaves the cell that I could call to compare the two values. If you do, I appologize for missing it, but would appreciate if you tell me what javascript function i could use to do so. Thanks again for all your help!
-s
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
Actually you are correct, there isn't any. Two other things that are close, but not exact, do exist:
1. You can capture ClientSideOnCellSelected. That way you can keep track of selected cell. Based on that you will know the previous selected cell and the current selected cell, you can then go from there; 2. You can use a CustomColumn. CustomColumn supports ClientSideEndEdit;
Thanks
|