Skip to content

Latest commit

 

History

History
39 lines (23 loc) · 2.55 KB

File metadata and controls

39 lines (23 loc) · 2.55 KB

Grid View for ASP.NET Web Forms - A simple batch editing implementation

This example demonstrates how to use the ASPxGridView control's batch edit mode events to update a custom object data source stored in the session.

Simple Batch Edit implementation

When a Grid View is bound to an object data source at runtime, you need to implement the CRUD logic required to edit data. To do this, use one of the following options:

  • Handle the ASPxGridView's RowInserting, RowUpdating, and RowDeleting events.

    This technique allows you to handle each CRUD operation type in a separate event handler.

  • Handle the BatchUpdate event.

    Use this technique to process all operations in a single handler.


Files to Look At

Documentation

More Examples