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

ASPxGridDataSecuritySettings.AllowReadUnexposedColumnsFromClientApi Property

Specifies whether to disable client-side access to data source fields that are bound to columns and these columns are hidden in the control.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v20.2.dll

NuGet Package: DevExpress.Web

Declaration

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

Property Value

Type Default Description
DefaultBoolean **Default**

One of the DefaultBoolean enumeration value.

Available values:

Name Description
True

Corresponds to a Boolean value of true.

False

Corresponds to a Boolean value of false.

Default

The value is determined by the current object’s parent object setting (e.g., a control setting).

Property Paths

You can access this nested property as listed below:

Show 16 property paths
Library Object Type Path to AllowReadUnexposedColumnsFromClientApi
ASP.NET Controls and MVC Extensions ASPxCardView
.SettingsDataSecurity .AllowReadUnexposedColumnsFromClientApi
ASPxGridView
.SettingsDataSecurity .AllowReadUnexposedColumnsFromClientApi
ASPxVerticalGrid
.SettingsDataSecurity .AllowReadUnexposedColumnsFromClientApi
GridViewProperties
.SettingsDataSecurity .AllowReadUnexposedColumnsFromClientApi
ASP.NET Bootstrap Controls BootstrapCardView
.SettingsDataSecurity .AllowReadUnexposedColumnsFromClientApi
BootstrapGridView
.SettingsDataSecurity .AllowReadUnexposedColumnsFromClientApi
ASP.NET MVC Extensions CardViewSettings
.SettingsDataSecurity .AllowReadUnexposedColumnsFromClientApi
CardViewSettings<CardType>
.SettingsDataSecurity .AllowReadUnexposedColumnsFromClientApi
GridViewSettings
.SettingsDataSecurity .AllowReadUnexposedColumnsFromClientApi
GridViewSettings<RowType>
.SettingsDataSecurity .AllowReadUnexposedColumnsFromClientApi
MVCxCardView
.SettingsDataSecurity .AllowReadUnexposedColumnsFromClientApi
MVCxGridView
.SettingsDataSecurity .AllowReadUnexposedColumnsFromClientApi
MVCxGridViewProperties
.SettingsDataSecurity .AllowReadUnexposedColumnsFromClientApi
MVCxVerticalGrid
.SettingsDataSecurity .AllowReadUnexposedColumnsFromClientApi
VerticalGridSettings
.SettingsDataSecurity .AllowReadUnexposedColumnsFromClientApi
VerticalGridSettings<ColumnType>
.SettingsDataSecurity .AllowReadUnexposedColumnsFromClientApi

Remarks

Use the AllowReadUnexposedColumnsFromClientApi property to restrict access to data source fields that are bound to columns and these columns are hidden in the ASPxGridView, ASPxCardView, and ASPxVerticalGrid controls.

ASPxGridView.SettingsDataSecurity.AllowReadUnexposedColumnsFromClientApi = DefaultBoolean.True;
ASPxCardView.SettingsDataSecurity.AllowReadUnexposedColumnsFromClientApi = DefaultBoolean.True;
ASPxVerticalGrid.SettingsDataSecurity.AllowReadUnexposedColumnsFromClientApi = DefaultBoolean.True;

If the AllowReadUnexposedColumnsFromClientApi property is set to Default, the client-side access to the data source’s unexposed fields depends upon the BackwardCompatibilitySettings.DataControlAllowReadUnexposedColumnsFromClientApiDefaultValue property setting.

Note

See Also