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

BackwardCompatibilitySettings.DataEditorsPreventLoadClientValuesForInvisibleControls Property

Specifies whether to load invisible editor values from the client to the server side.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v21.2.dll

NuGet Package: DevExpress.Web

Declaration

public bool DataEditorsPreventLoadClientValuesForInvisibleControls { get; set; }

Property Value

Type Description
Boolean

true to load invisible editor values on the server side; otherwise, false.

Property Paths

You can access this nested property as listed below:

Object Type Path to DataEditorsPreventLoadClientValuesForInvisibleControls
ASPxWebControl
.BackwardCompatibility .DataEditorsPreventLoadClientValuesForInvisibleControls

Remarks

The following example illustrates how to allow editors to load their read-only values from the client to the server:

Global.asax:

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