onRowGroupHeaderFooterDblClicked
Description
사용자가 마우스로 RowGroup의 Header, Footer 더블 클릭했을 때 호출된다.
Syntax
function onRowGroupHeaderFooterDblClicked (grid, kind, index)
Arguments
grid
Type: GridBase
GridBase 컨트롤
kind
Type: number
클릭된 영역의 인덱스 값, head = -1, foot = -2
index Type: object DataColumn과 같은 구조의 object.
Return
None.
Examples
gridView.onRowGroupHeaderFooterDblClicked = function (grid, kind, index) { console.log("onRowGroupHeaderFooterDblClicked : " + "(" + index + ")") };