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

ASPxGridView.SettingsDataSecurity Property

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

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

public ASPxGridViewDataSecuritySettings SettingsDataSecurity { get; }

Property Value

Type Description
ASPxGridViewDataSecuritySettings

The security settings.

Remarks

Declaratively:

<dx:ASPxGridView ID="ASPxGridView1" runat="server" >
    <SettingsDataSecurity AllowReadUnlistedFieldsFromClientApi="True" />
</dx:ASPxGridView>

In code:

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