ASPxVerticalGrid.SettingsDataSecurity Property
In This Article
Security settings that allow you to disable data operations in the ASPxVerticalGrid.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
public ASPxVerticalGridDataSecuritySettings SettingsDataSecurity { get; }
#Property Value
Type | Description |
---|---|
ASPx |
The security settings. |
#Remarks
In markup:
<dx:ASPxVerticalGrid ID="ASPxVerticalGrid1" runat="server" >
<SettingsDataSecurity AllowReadUnlistedFieldsFromClientApi="True" />
</dx:ASPxVerticalGrid>
In code:
ASPxVerticalGrid1.SettingsDataSecurity.AllowReadUnlistedFieldsFromClientApi = DefaultBoolean.True;
See Also