This example illustrates a simple implementation of a new ASPxGridView Batch Editing Mode functionality available starting with version 13.2:
ASP.NET WebForms & MVC: GridView Batch Edit (What's new in 13.2)
This example is a standalone DB-independent solution of the online Batch Editing demo. Refer to the demo's Description for more information.
Handle the ASPxGridView RowInserting/RowUpdating/RowDeleting events if you want to submit a batch of modifications individually via a corresponding CRUD procedure.
Handle the ASPxGridView.BatchUpdate event if you want to submit a batch of modifications at once via a corresponding BatchUpdate procedure.
Note that this example uses a custom local data source stored in Session. The grid is bound to a list of objects of the GridDataItem type. The GridDataItem class here is implemented specially for this local data source. If you're using another data source, you can use the same approach to save the inserted/modified data in the RowInserting/RowUpdating/RowDeleting/BatchUpdate events without adding this class and modify your data by creating the corresponding requests to the data source in these event handlers