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

ASPxClientGridBatchEditSummaryDisplayTextEventArgs.isGroupSummary Property

Specifies whether the processed summary is a group summary.

Declaration

isGroupSummary: boolean

Property Value

Type Description
boolean

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

Remarks

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

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