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

MVCxBatchUpdateValues<T, S>.Insert Property

Contains a list of objects that are the records added on the client side in batch edit mode.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v18.2.dll

Declaration

public List<T> Insert { get; set; }

Property Value

Type Description
List<T>

A List<T> object that stores a list of records that have been added on the client side.

Remarks

In batch editing mode, all the end-user changes are maintained on the client side until the Update button is clicked, or all changes are canceled by clicking the Cancel changes button. When an end-user clicks Update, a grid extension sends a callback with user changes (the MVCxBatchUpdateValues<T, S> object) to the server side. This callback is handled by an Action in the Controller, defined using the BatchUpdateRouteValues property. This Action method receives the MVCxBatchUpdateValues<T, S> object as a parameter, and allows you to apply all the changes made on the client side to the grid’s data source.

The Insert property contains a list of records added on the client side in batch edit mode.

See Also