Skip to content

dxstanley/aspxgridview-a-simple-batch-editing-implementation-e5045

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ASPxGridView - A simple Batch Editing implementation

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


About

.NET, ASP.NET Web Forms, ASPxGridView

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 68.2%
  • Classic ASP 31.8%