Description

사용자가 마우스로 RowGroup의 Bar를 클릭했을 때 호출된다.

Syntax

function onRowGroupBarDblClicked (grid, index)

Arguments

grid
Type: GridBase
GridBase 컨트롤

index
Type: number
RowGroup의 Level 값, expander를 클릭하는 경우 -1

Return

None.

Examples

gridView.onRowGroupBarDblClicked =  function (grid, index) {
    console.log("onRowGroupBarDblClicked : " + "(" + index + ")")
};