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
90
update is not getting fired when BoundCheckBoxField value is changed in a Webdatagrid
posted

I have a check box as a column in the webdatagrid . I have defined it as BoundCheckBoxField.

I have written the following code so that the update will be fired immediately when there is a change. So, the update of a text field is happening after pressing the enter. But when i change the check box value (uncheck the checkbox) the update method is not getting fired immediately, It is getting fired when I click on delete or change the text box value of the same/different row. Could you please guide me how to fire the update function when the check box value is changed 

<CellEditingClientEvents ExitedEditMode="exitedEditMode" />

   function exitedEditMode(grid, args) {

            grid.get_behaviors().get_editingCore().commit();

        }

Thanks in advance.