ASPxClientGridBatchEditSummaryDisplayTextEventArgs.isTotalSummary Property
In This Article
Specifies whether the processed summary is a total summary.
#Declaration
TypeScript
isTotalSummary: boolean
#Property Value
Type | Description |
---|---|
boolean |
|
#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