Skip to main content

CardViewSettings.TotalSummary Property

Provides access to total summary items.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v23.2.dll

NuGet Package: DevExpress.Web.Mvc5

Declaration

public ASPxCardViewSummaryItemCollection TotalSummary { get; }

Property Value

Type Description
ASPxCardViewSummaryItemCollection

An ASPxCardViewSummaryItemCollection object representing the total summary collection.

Remarks

Use the TotalSummary property to access the collection of total summary items. Note that total summaries are displayed within the CardView’s summary panel, so you need to enable it by setting the ASPxCardViewSettings.ShowSummaryPanel (via CardViewSettings.Settings.ShowSummaryPanel) property to true.

Note

In database server mode, a summary cannot be calculated for unbound columns in which values are calculated via delegate methods (see CardViewSettings.CustomUnboundColumnData). Only columns with unbound expressions (see CardViewColumn.UnboundExpression) support summary calculation.

Example

The code sample below demonstrates how to add a summary item to the TotalSummary collection.

@Html.DevExpress().CardView(settings => {
    settings.Name = "CardView";
    // ...
    settings.Columns.Add("CompanyName");
    settings.Columns.Add("ContactName");
    // ...
    // Adds a total summary of "Count" type in the "CompanyName" column.
    settings.TotalSummary.Add(DevExpress.Data.SummaryItemType.Count, "CompanyName");
    // Total summaries are displayed within the CardView summary panel which must be enabled. 
    settings.Settings.ShowSummaryPanel = true;
}).Bind(Model).GetHtml()
See Also