Skip to main content
Tab

ASPxCardViewDataSecuritySettings Class

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

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public class ASPxCardViewDataSecuritySettings :
    ASPxGridDataSecuritySettings

The following members return ASPxCardViewDataSecuritySettings objects:

Library Related API Members
ASP.NET Web Forms Controls ASPxCardView.SettingsDataSecurity
ASP.NET MVC Extensions CardViewSettings.SettingsDataSecurity

Remarks

Use the ASPxCardView.SettingsDataSecurity property to access the ASPxCardViewDataSecuritySettings class.

In markup:

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

In code:

ASPxCardView1.SettingsDataSecurity.AllowReadUnlistedFieldsFromClientApi = DefaultBoolean.True;

Implements

See Also