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

ASPxCardView.SettingsDataSecurity Property

Security settings that allow you to disable data operations in the ASPxCardView.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

public ASPxCardViewDataSecuritySettings SettingsDataSecurity { get; }

Property Value

Type Description
ASPxCardViewDataSecuritySettings

The security settings.

Remarks

Declaratively:

<dx:ASPxCardView ID="ASPxCardView1" runat="server" >
    <SettingsDataSecurity AllowReadUnlistedFieldsFromClientApi="True" />
</dx:ASPxCardView>

In code:

ASPxCardView1.SettingsDataSecurity.AllowReadUnlistedFieldsFromClientApi = DefaultBoolean.True;
See Also