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

ASPxCardViewDataSecuritySettings Class

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

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.1.dll

Declaration

public class ASPxCardViewDataSecuritySettings :
    ASPxGridDataSecuritySettings

The following members return ASPxCardViewDataSecuritySettings objects:

Remarks

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

Declaratively:

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

In code:

ASPxCardView1.SettingsDataSecurity.AllowReadUnlistedFieldsFromClientApi = DefaultBoolean.True;

Implements

See Also