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

ASPxGridView.SummaryDisplayText Event

Enables custom display text to be provided for any summary value.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v21.2.dll

NuGet Package: DevExpress.Web

Declaration

public event ASPxGridViewSummaryDisplayTextEventHandler SummaryDisplayText

Event Data

The SummaryDisplayText event's data class is ASPxGridViewSummaryDisplayTextEventArgs. 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.
IsGroupSummary Indicates whether a group summary value is processed.
IsTotalSummary Indicates whether a total summary value is being processed.
Item Gets the processed summary item.
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.
VisibleIndex Gets a value that identifies the group row where the processed summary value is displayed.

Remarks

The SummaryDisplayText event is raised for both group and total summaries. Use the ASPxGridViewSummaryDisplayTextEventArgs.IsGroupSummary and ASPxGridViewSummaryDisplayTextEventArgs.IsTotalSummary properties to identify which summary value is being processed.

Initialy the event parameter’s ASPxGridSummaryDisplayTextEventArgs.Text property contains the text currently displayed in the group row or footer cell. To provide custom text, assign it to this property.

Example

The following example calculates a summary in the CategoryID column based on the value in the ASPxSpinEdit below it.

When an end user changes a spin editor value, the editor sends a custom callback to the server in the client-side NumberChanged event handler. In the server-side SummaryDisplayText event handler, the grid calculates the summary value and sets it to the e.Text parameter.

View Example

using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

public partial class MasterPage : System.Web.UI.MasterPage {
    protected void Page_Load(object sender, EventArgs e)  {
    }
}
See Also