onStateBarCellClicked
Description
사용자가 마우스로 StateBar셀을 클릭했을 때 호출된다.
Syntax
function onStateBarCellClicked (grid, index)
Arguments
grid
Type: GridBase
GridBase 컨트롤
index
Type: number
클릭된 영역의 인덱스 값, head = -1, foot = -2
Return
None.
Examples
gridView.onStateBarCellClicked = function (grid, index) { console.log("onStateBarCellClicked : " + "(" + index + ")") };