Skip to main content

ASPxClientGridBatchEditSummaryDisplayTextEventArgs.summaryItemIndex Property

Gets the summary item index.

#Declaration

TypeScript
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