New to Telerik UI for ASP.NET AJAXStart a free 30-day trial

OnBatchEditClosed

This event is fired after the cell is closed.

Fired byRadGrid
Argumentscell - 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 canceledNo

Example:

ASP.NET
<telerik:radgrid id="RadGrid1" datasourceid="SqlDataSource1">
    <MasterTableView EditMode="Batch">
    </MasterTableView>
    <ClientSettings>
          <ClientEvents OnBatchEditClosed="BatchEditClosed" />
    </ClientSettings>
</telerik:radgrid>
JavaScript
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();
}
Not finding the help you need?
Contact Support