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

ASPxGridDataSecuritySettings.PreventLoadClientValuesForInvisibleColumns Property

Specifies whether to load invisible columns’ values from the client to the server.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v21.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(DefaultBoolean.Default)]
public virtual DefaultBoolean PreventLoadClientValuesForInvisibleColumns { get; set; }

Property Value

Type Default Description
DefaultBoolean Default

An enumeration value.

Available values:

Name Description
True

true. DefaultBoolean.True has a constant value of 0, while the standard true value corresponds to a value of 1. In Visual Basic, do not use implicit conversion of Boolean values to DefaultBoolean, and vice versa, as the conversion may produce incorrect results.

False

false. DefaultBoolean.False has a constant value of 1, while the standard false value corresponds to a value of 0. In Visual Basic, do not use implicit conversion of Boolean values to DefaultBoolean, and vice versa, as the conversion may produce incorrect results.

Default

The default behavior determined by the control’s logic.

Remarks

Use the PreventLoadClientValuesForInvisibleColumns property to specify whether to load invisible columns’ values from the client to the server.

ASPxGridView.SettingsDataSecurity.PreventLoadClientValuesForInvisibleColumns = DefaultBoolean.True;

If the PreventLoadClientValuesForInvisibleColumns property is set to Default, access to invisible columns’ values from the server depends on the DataControlPreventLoadClientValuesForInvisibleColumns property setting.

Note

The PreventLoadClientValuesForInvisibleColumns property has priority over the DataControlPreventLoadClientValuesForInvisibleColumns property.

See Also