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