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

ASPxCardView.SettingsCookies Property

Provides access to the ASPxCardView cookie and layout settings.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v20.2.dll

NuGet Package: DevExpress.Web

Declaration

public ASPxCardViewCookiesSettings SettingsCookies { get; }

Property Value

Type Description
ASPxCardViewCookiesSettings

An ASPxCardViewCookiesSettings object that contains the control’s cookie and layout settings.

Remarks

The SettingsCookies property allows you to specify cookie and layout storing settings.

  • Cookies

    If the browser supports cookies, the ASPxCardView can persist its state (paging, filter criteria, etc.) in cookies. Otherwise, information about the control’s state is lost between different requests from the client for the same page. Use the SettingsCookies property to specify which information on the ASPxCardView state can be saved to cookies. To enable cookies, set the ASPxGridCookiesSettings.Enabled property to true.

  • Layout Storing

    Use the SettingsCookies to specify which information on the ASPxCardView layout will be saved when handling the ASPxGridBase.ClientLayout event or calling the ASPxGridBase.SaveClientLayout method.

See Also