Skip to main content

ASPxClientGridBatchEditSummaryDisplayTextEventArgs.summaryType Property

Gets the summary type.

#Declaration

TypeScript

#Property Value

Type Description
ASPxClientSummaryItemType

One of the enumeration values.

#Remarks

The summaryType property allows you to get the summary item type in the BatchEditSummaryDisplayText event handler and customize the summary depending on the summary type.

function onBatchEditSummaryDisplayText(s, e) {
    if (e.summaryType === ASPxClientSummaryItemType.Count) {
        // your code
    }
}
See Also