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

ASPxVerticalGrid.SettingsDataSecurity Property

Security settings that allow you to disable data operations in the ASPxVerticalGrid.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.2.dll

Declaration

public ASPxVerticalGridDataSecuritySettings SettingsDataSecurity { get; }

Property Value

Type Description
ASPxVerticalGridDataSecuritySettings

The security settings.

Remarks

Declaratively:

<dx:ASPxVerticalGrid ID="ASPxVerticalGrid1" runat="server" >
    <SettingsDataSecurity AllowReadUnlistedFieldsFromClientApi="True" />
</dx:ASPxVerticalGrid>

In code:

ASPxVerticalGrid1.SettingsDataSecurity.AllowReadUnlistedFieldsFromClientApi = DefaultBoolean.True;
See Also