ASPxGridView.SettingsDataSecurity Property
Security settings that allow you to disable data operations in the ASPxGridView.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
Declaration
Property Value
Type | Description |
---|---|
ASPxGridViewDataSecuritySettings | The security settings. |
Remarks
In markup:
<dx:ASPxGridView ID="ASPxGridView1" runat="server" >
<SettingsDataSecurity AllowReadUnlistedFieldsFromClientApi="True" />
</dx:ASPxGridView>
In code:
ASPxGridView1.SettingsDataSecurity.AllowReadUnlistedFieldsFromClientApi = DefaultBoolean.True;
See Also