Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
850
How to get Changed value of the cell in ExitingEditMode event handler
posted

Hi can anyone tell me how to get the new value of a cell in ExitingEditMode client event of WebDataGrid?

I mean, when i change the data in a cell and hit Enter Key, it fires the ExitingEditMode event but I see that if I do e.getCell().get_value() it returns the previous value of the data in the cell but not the changed value.

I need to do this so that I can define an ExitingEditMode event handler for Row Adding and do some necessary validations before adding the row and cancel if the validations fail.

Can you please provide me with a sample for this.