Skip to main content

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.v23.2.dll

NuGet Package: DevExpress.Web.Mvc5

Declaration

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

Property Value

Type Description
List<T>

An object that stores a list of records that have been added on the client side.

Remarks

In batch edit mode, user changes are maintained on the client side until an extension sends a callback with the changes to the server side. This callback is handled by an Action in the Controller defined by 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 extension’s data source.

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

See Also