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

ASPxGridViewDataSecuritySettings Class

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

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.2.dll

Declaration

public class ASPxGridViewDataSecuritySettings :
    ASPxGridDataSecuritySettings

Remarks

Use the ASPxGridView.SettingsDataSecurity property to access the ASPxGridViewDataSecuritySettings class.

Declaratively:

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

In code:

ASPxGridView1.SettingsDataSecurity.AllowReadUnlistedFieldsFromClientApi = DefaultBoolean.True;

Implements

See Also