ASPxCardViewSettings Class
Provides view options for ASPxCardView controls.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
public class ASPxCardViewSettings :
ASPxGridSettings
#Related API Members
The following members return ASPxCardViewSettings objects:
Library | Related API Members |
---|---|
ASP. |
ASPx |
ASP. |
Card |
#Remarks
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.
#Example
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;
...
});
#Implements
#Inheritance
See Also