ASPxClientGridBatchEditSummaryDisplayTextEventArgs.isGroupSummary Property
Specifies whether the processed summary is a group summary.
Declaration
isGroupSummary: boolean
Property Value
Type | Description |
---|---|
boolean |
|
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