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

ASPxCardViewSummaryItem Class

Represents a summary item.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.2.dll

Declaration

public class ASPxCardViewSummaryItem :
    ASPxSummaryItemBase

The following members return ASPxCardViewSummaryItem objects:

Library Related API Members
ASP.NET Controls and MVC Extensions ASPxCardViewSummaryDisplayTextEventArgs.Item
ASPxCardViewSummaryItemCollection.Add(SummaryItemType, String)
ASPxCardViewSummaryItemCollection.Item[String, SummaryItemType]
ASPxCardViewSummaryItemCollection.Item[String]
ASP.NET Bootstrap Controls BootstrapCardViewSummaryDisplayTextEventArgs.Item

Remarks

The ASPxCardView allows you to display brief information about rows or individual data columns. For instance, you can display the number of records or the maximum value, etc. This is called a summary. Summaries are represented by the ASPxCardViewSummaryItem objects.

The ASPxCardView supports total summaries. These are aggregate function values calculated over all the cards within the ASPxCardView and displayed within the summary panel. Total summaries are stored within the ASPxCardView.TotalSummary collection.

For a summary item, the following two properties must be specified.

<dx:ASPxCardViewSummaryItem FieldName="Total" SummaryType="Sum"/>

The summary item above summarizes the ‘Total’ field values within all cards and display the sum in the summary panel.

To learn more, see Data Summaries.

Implements

DevExpress.Data.Summary.ISummaryItem

Inheritance

See Also