Skip to main content
A newer version of this page is available. .

ASPxClientGridViewBatchEditApi.EndEdit Method

Ends cell or row editing.

Declaration

EndEdit(): void

Remarks

Use the EndEdit method to end the editing of a cell or row (based on the GridViewBatchEditSettings.EditMode property). The method hides an editor and switches a cell/row to browse mode.

Example

The following example illustrates how to use the EndEdit method.


function OnCellCheckedChanged(s, e) {
    Grid.batchEditApi.EndEdit();
}
See Also