Skip to main content
All docs
V25.1
  • ASPxClientGridBatchEditSummaryDisplayTextEventArgs.summaryItemIndex Property

    Gets the summary item index.

    Declaration

    summaryItemIndex: number

    Property Value

    Type Description
    number

    The index.

    Remarks

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

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