New to Telerik UI for ASP.NET AJAX? Start a free 30-day trial
OnBatchEditClosing
Updated over 6 months ago
This event is fired when a cell is closing.
| 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 canceled -returns a value indicating whether the event is canceled | 
| Can be canceled | Yes, set args.set_cancel(true) to cancel | 
Example:
ASP.NET
<telerik:radgrid id="RadGrid1" datasourceid="SqlDataSource1">
    <MasterTableView EditMode="Batch">
    </MasterTableView>
    <ClientSettings>
         <ClientEvents OnBatchEditClosing="BatchEditClosing" />
    </ClientSettings>
</telerik:radgrid>JavaScript
function BatchEditClosing(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();
    var isCanceled = args.get_cancel();
}