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

OnBatchEditGetEditorValue

This event should be handled when multiple controls which contain an input element are placed inside the EditItemTemplate of a GridTemplateColumn. It should be used for extracting the value from the editor and passing it to the arguments. Later this value is assigned to the cell.

Fired by RadGrid
Arguments container - gets the container in which the editor is placed 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 value - gets the editor value cancel - returns a value indicating whether the event is canceled
Can be canceled Yes, set args.set_cancel(true) to cancel

Example:

<telerik:RadGrid RenderMode="Lightweight" ID="RadGrid1" DataSourceID="SqlDataSource1">
    <MasterTableView EditMode="Batch">
    <ClientSettings>
        <ClientEvents OnBatchEditGetEditorValue="BatchEditGetEditorValue"/>
    </ClientSettings>
</telerik:RadGrid>
function BatchEditGetEditorValue(sender, args) {
    var itemContainer = args.get_container();
    var cell = args.get_cell(); 
    var row = args.get_row(); 
    var column = args.get_column();
    var columnUniqueName = args.get_columnUniqueName(); 
    var currentlyEditedTable = args.get_tableView();
    var editorValue = args.get_value(); 
    var isEventCanceled = args.get_cancel();

}
In this article