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.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
[DefaultValue(true)]
public bool DataEditorsPreventLoadClientValuesForInvisibleControls { get; set; }
Property Value
Type | Default | Description |
---|---|---|
Boolean | true |
|
Property Paths
You can access this nested property as listed below:
Object Type | Path to DataEditorsPreventLoadClientValuesForInvisibleControls |
---|---|
ASPxWebControl |
|
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