aspnet-devexpress-dot-web-5190b27a.md
Provides view options for ASPxCardView controls.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
public class ASPxCardViewSettings :
ASPxGridSettings
Public Class ASPxCardViewSettings
Inherits ASPxGridSettings
The following members return ASPxCardViewSettings objects:
| Library | Related API Members |
|---|---|
| ASP.NET Web Forms Controls | ASPxCardView.Settings |
| ASP.NET MVC Extensions | CardViewSettings.Settings |
The ASPxCardViewSettings class contains options that specify the visibility of various elements (column headers, footer, status bar, etc.) within the ASPxCardView. These settings can be accessed using the ASPxCardView.Settings property.
Web Forms:
<dx:ASPxCardView ID="CardView" runat="server" DataSourceID="CustomersDataSource" Width="100%">
<Columns>
...
</Columns>
<Settings ShowHeaderPanel="true" ShowHeaderFilterButton="true" />
</dx:ASPxCardView>
MVC:
var cardView = Html.DevExpress().CardView(settings =>
{
settings.Name = "CardView";
settings.CallbackRouteValues = new { Controller = "Home", Action = "CardViewPartial" };
settings.KeyFieldName = "ID";
settings.Settings.ShowHeaderPanel = true;
settings.Settings.ShowHeaderFilterButton = true;
...
});
Object StateManager PropertiesBase ASPxGridSettingsBase ASPxGridSettings ASPxCardViewSettings BootstrapCardViewSettings
See Also