New to Telerik UI for ASP.NET AJAX? Download free 30-day trial

OnBatchEditClosed

This event is fired after the cell is closed.

Fired by RadGrid
Arguments cell - gets the currently edited cell row - gets the currently edited row column - gets the currently edited column columnUniqueName - gets the UniqueName of the edited column tableView - gets the TableView in which the edited item is located
Can be canceled No

Example:

<telerik:radgrid id="RadGrid1" datasourceid="SqlDataSource1">
    <MasterTableView EditMode="Batch">
    </MasterTableView>
    <ClientSettings>
          <ClientEvents OnBatchEditClosed="BatchEditClosed" />
    </ClientSettings>
</telerik:radgrid>
function BatchEditClosed(sender, args) {
    var row = args.get_row();
    var cell = args.get_cell();
    var tableView = args.get_tableView();
    var column = args.get_column();
    var columnUniqueName = args.get_columnUniqueName();
}
In this article