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

BackwardCompatibilitySettings.DataControlBatchEditKeepChangesOnCallbacksDefaultValue Property

Specifies whether the grid keeps changes made in batch edit mode on callbacks.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v21.2.dll

NuGet Package: DevExpress.Web

Declaration

public bool DataControlBatchEditKeepChangesOnCallbacksDefaultValue { get; set; }

Property Value

Type Description
Boolean

true, to keep changes on callbacks; otherwise, false.

Property Paths

You can access this nested property as listed below:

Object Type Path to DataControlBatchEditKeepChangesOnCallbacksDefaultValue
ASPxWebControl
.BackwardCompatibility .DataControlBatchEditKeepChangesOnCallbacksDefaultValue

Remarks

The DataControlBatchEditKeepChangesOnCallbacksDefaultValue property controls whether the grid keeps changes made in batch edit mode on callbacks if the GridViewBatchEditSettings.KeepChangesOnCallbacks property is set to Default.

The following example illustrates how to enable the grid to save the changes on callbacks.

Global.asax:

void Application_Start(object sender, EventArgs e) {
    ASPxWebControl.BackwardCompatibility.DataControlBatchEditKeepChangesOnCallbacksDefaultValue = true;
}
See Also