onRowGroupBarClicked
Description
사용자가 마우스로 RowGroup의 Bar를 클릭했을 때 호출된다.
Syntax
function onRowGroupBarClicked (grid, index)
Arguments
grid
Type: GridBase
GridBase 컨트롤
index
Type: number
RowGroup의 Level 값, expander를 클릭하는 경우 -1
Return
None.
Examples
gridView.onRowGroupBarClicked = function (grid, index) { console.log("onRowGroupBarClicked : " + "(" + index + ")") };