Skip to main content
Tab

ASPxGridViewDataSecuritySettings Class

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

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public class ASPxGridViewDataSecuritySettings :
    ASPxGridDataSecuritySettings

The following members return ASPxGridViewDataSecuritySettings objects:

Library Related API Members
ASP.NET Web Forms Controls ASPxGridView.SettingsDataSecurity
GridViewProperties.SettingsDataSecurity
ASP.NET MVC Extensions GridViewSettings.SettingsDataSecurity
MVCxGridViewProperties.SettingsDataSecurity

Remarks

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

In markup:

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

In code:

ASPxGridView1.SettingsDataSecurity.AllowReadUnlistedFieldsFromClientApi = DefaultBoolean.True;

Implements

See Also