Skip to main content

ASPxClientGridBatchEditSummaryDisplayTextEventArgs.isTotalSummary Property

Specifies whether the processed summary is a total summary.

#Declaration

TypeScript
isTotalSummary: boolean

#Property Value

Type Description
boolean

true, if the processed summary is a total summary; otherwise, false.

#Remarks

The isTotalSummary property allows you to specify whether the processed summary is a total summary in the BatchEditSummaryDisplayText event handler.

function onBatchEditSummaryDisplayText(s, e) {
    if (e.isTotalSummary === true) {
        // your code
    }
}
See Also