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

Batch Edit Mode

  • 8 minutes to read

The ASPxGridView control allows you to modify grid data on the client side and then send it to the server in a single request. All user changes are maintained on the client side until a user clicks the Update or Cancel button. Set the ASPxGridViewEditingSettings.Mode property to Batch to enable the batch edit functionality.

BatchEditMode

Batch Edit Mode Settings

Customize the ASPxGridView‘s functionality in batch edit mode using the following features:

Edit mode

End-users can use in-line editors to edit data in a grid. The GridViewBatchEditSettings.EditMode property allows you to specify which control element (data cell or data row) end-users can use to edit data.

ASPxGridView Batch Mode Edit Mode

Start edit action

Set the GridBatchEditSettings.StartEditAction property to one of the following values to specify which user action invokes a data cell’s in-line editor:

Preventing end-user editing

Set the column’s GridColumnEditFormSettings.Visible property to false to prevent an end-user from switching to the edit mode. These column cells are skipped when end-users navigate through cells using the TAB key.

Confirmation on losing changes

A grid displays a “confirm” message before a grid callback or postback is performed if it contains modified data. Customize the message text using the ASPxGridTextSettings.ConfirmOnLosingBatchChanges property, or disable it by setting the GridBatchEditSettings.ShowConfirmOnLosingChanges property to false.

Validation

The ASPxGridView allows you to validate grid data client side in batch edit mode. Use the ASPxClientGridView.BatchEditRowValidating event to specify whether end-user changes are valid.

Set the GridBatchEditSettings.AllowValidationOnEndEdit property to one of the following values to specify when to fire the ASPxClientGridView.BatchEditRowValidating event.

  • true - In this default settings, the control checks edited data cell/row when an in-line editor loses focus.

    The ValidationSettings.SetFocusOnError property is not in effect in batch edit mode if the input value fails validation and needs to re-focus an editor. Instead, set the GridBatchEditSettings.AllowEndEditOnValidationError property to false to focus th editor until an end-user inputs the correct value.

  • false - In this case, the control checks all edited data cells/rows when an end-user clicks the Update button.

To validate grid data programmatically, use the ASPxClientGridViewBatchEditApi.ValidateRow method for the specified data row/cell and the ASPxClientGridViewBatchEditApi.ValidateRows method for all displayed data.

See the T171182: ASPxGridView - How to implement custom date validation in Batch Edit mode code example to learn more information about grid validation in batch edit mode.

Data Item Template

The ASPxGridView provides a set of API members to help process a content of data cells specified in data item templates.

Use the ASPxClientGridViewBatchEditApi.GetCellTextContainer method to get a column’s container object when the grid is in batch edit mode. Use the GridBatchEditSettings.AllowRegularDataItemTemplate property to specify whether to overwrite a data item template in a data cell when its editing is completed.

The following code example demonstrates how to use the described API resources: T506160: How to use and modify a control placed in the DataItemTemplate.

In Batch Edit mode, use the DataItemTemplate only to customize the appearance as the grid copies only a row’s HTML markup when creating a new row.

Appearance Customization

The ASPxGridView highlights all modified values in batch edit mode.

ASPxGridView Batch Mode Visual Cells

You can customize the visual presentation of modified data cells/rows using the following properties:

You also can remove deleted data rows from the grid instead of highlighting them. To do this, switch the GridViewBatchEditSettings.HighlightDeletedRows property to false.

The grid stores the Update and Cancel buttons within its status bar. You can use the status bar‘s style settings to adjust these buttons’ appearance.

The following code snippets illustrate how to hide the Update and Cancel buttons:

  • Using the ASPxGridSettings.ShowStatusBar property.

    
    ...
    <Settings ShowStatusBar="Hidden"/>
    ...
    
  • Modifying the grid’s dxgvStatusBar CSS class.

    
    .dxgvStatusBar {
        display: none;
    }
    

Client-side Functionality

The ASPxClientGridView.batchEditApi property provides access to the batch edit client API. The tables below list the API resources that you can use to invoke grid commands on the client-side:

Start editing

Member Description
ASPxClientGridView.StartEditRow Invokes in-line editors in a specified row.
ASPxClientGridViewBatchEditApi.StartEdit Invokes the in-line editor in a specified cell.

Add/Delete row

Member Description
ASPxClientGridView.AddNewRow Adds a new row. Does not perform a callback in batch edit mode.
ASPxClientGridView.DeleteRow Deletes the specified row.
ASPxClientGridViewBatchEditApi.IsNewRow Indicates if the row with a specified visible index is newly created.
ASPxClientGridViewBatchEditApi.IsDeletedRow Indicates if the row with a specified visible index is deleted.

Finish editing

Member Description
ASPxClientGridViewBatchEditApi.EndEdit Ends cell or row editing.
ASPxClientGridView.UpdateEdit Ends cell or row editing and send all changes to the server.
ASPxClientGridViewBatchEditApi.ResetChanges Resets all unsaved changes in a specified row/cell.
ASPxClientGridView.CancelEdit Cancels all changes, and switches the grid to browse mode.

Note, that there are client-side methods that are not in effect in batch edit mode. See the Batch Edit Mode Limitations - Unsupported client-side API topic for more details.

Batch Edit Mode Events

The ASPxGridView provides a set of events that allow you to perform custom actions when end-users interact with the grid in batch edit mode.

Server-side events

The ASPxGridBase.BatchUpdate event allows you to implement the custom data updating mechanism. The event fires when an end-user clicks the Update button or calls the ASPxClientGridView.UpdateEdit method; the ASPxGridBase.BatchUpdate event handler receives an argument containing information about all changed values.


<dx:ASPxGridView ID="Grid" runat="server" KeyFieldName="ID" OnBatchUpdate="Grid_BatchUpdate" >
    <ClientSideEvents .../>
    <Columns>
        ...
    </Columns>
    <SettingsEditing Mode="Batch" />
</dx:ASPxGridView>

Client-side events

The ASPxClientGridView provides a set of the client-side methods that occur only when the grid is in batch edit mode. These methods are listed in the following tables:

Batch Edit Mode Limitations

There are ASPxGridView control features and API members that are not in effect in batch edit mode, since all user changes are maintained on the client-side.

Unsupported features

The features below are not supported when the grid is in batch edit mode:

Unsupported server-side API

The following ASPxGridView members are not in effect when the grid is in batch edit mode:

You can use the client-side API instead of the unsupported server-side API to implement the tasks listed above.

Code Examples

A simple Batch Editing implementation

How to cancel editing or disable the editor conditionally

How to conditionally enable and disable the editing on the client side

How to implement copy and clone functionality

How to calculate values on the fly

How to implement custom date validation

How to update total summaries on the client side

How to implement cascading comboboxes

How to update a master grid and all its detail grids simultaneously

See Also