Skip to main content
Tab

ASPxGridDataSecuritySettings.PreventLoadClientValuesForInvisibleColumns Property

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

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.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 Return Value
True

The value is true.

0

False

The value is false.

1

Default

The value is specified by a global option or a higher-level object.

2

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