Description

사용자가 마우스로 RowGroupPanel을 클릭했을 때 호출된다.

Syntax

function onRowGroupPanelClicked (grid, column)

Arguments

grid
Type: GridBase
GridBase 컨트롤

column
Type: object
DataColumn과 같은 구조의 object.

Return

None.

Examples

gridView.onRowGroupPanelClicked =  function (grid, column) {
    console.log("onRowGroupPanelClicked : " + "(" + column.name + ")")
};