Skip to main content

BootstrapCardView.SummaryDisplayText Event

Enables to provide custom display text for any summary value.

Namespace: DevExpress.Web.Bootstrap

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

NuGet Package: DevExpress.Web.Bootstrap

Declaration

public event BootstrapCardViewSummaryDisplayTextEventHandler SummaryDisplayText

Event Data

The SummaryDisplayText event's data class is BootstrapCardViewSummaryDisplayTextEventArgs. The following properties provide information specific to this event:

Property Description
EncodeHtml Gets or sets a value that specifies whether the summary display text keeps any of its values that are HTML as HTML, or instead, strips out the HTML markers. Inherited from ASPxGridSummaryDisplayTextEventArgs.
Item Gets a summary item whose value is being processed.
Text Gets or sets the display text for the summary value currently being processed. Inherited from ASPxGridSummaryDisplayTextEventArgs.
Value Gets the processed summary value. Inherited from ASPxGridSummaryDisplayTextEventArgs.

Remarks

The SummaryDisplayText event is raised for total summaries.

Initialy, the event parameter’s ASPxGridSummaryDisplayTextEventArgs.Text property contains the text currently displayed in the summary panel. To provide custom text, assign it to this property.

See Also