Skip to main content
Tab

BackwardCompatibilitySettings.DataEditorsPreventLoadClientValuesForInvisibleControls Property

Specifies whether to prevent invisible editor from loading their values from the client to the server.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(true)]
public bool DataEditorsPreventLoadClientValuesForInvisibleControls { get; set; }

Property Value

Type Default Description
Boolean true

true to prevent invisible editor from loading their values to the server; 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 demonstrates how to allow invisible editors to load their values from the client to the server:

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