Skip to main content
All docs
V25.1
  • 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