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

ASPxClientGridViewBatchEditApi.GetTotalSummaryValue(summaryItemIndex) Method

Returns the total summary value.

Declaration

GetTotalSummaryValue(
    summaryItemIndex: number | string
): number

Parameters

Name Type Description
summaryItemIndex number | string

The total summary’s index or field name.

Returns

Type Description
number

The total summary value.

Remarks

The example below illustrates how to use the GetTotalSummaryValue method.

<dx:ASPxGridView ID="Grid" runat="server" ClientInstanceName="grid" ... >
    // ...
    <TotalSummary>
        <dx:ASPxSummaryItem FieldName="ProductName" SummaryType="Count" />
        <dx:ASPxSummaryItem FieldName="Discount" SummaryType="Max" DisplayFormat="Max Discount = {0:p0}" />
        <dx:ASPxSummaryItem FieldName="Total" SummaryType="Sum" />
    </TotalSummary>
    // ...
</dx:ASPxGridView>

<br />
<dx:ASPxButton ID="ASPxButton1" runat="server" AutoPostBack="False" Text="Get summary value" >
    <ClientSideEvents Click="OnClick" />
</dx:ASPxButton>
See Also