Description

SearchCellEditor에서 버튼을 클릭했을때 발생한다.

Syntax

function onSearchCellButtonClick(grid, index, text)

Arguments

grid
Type: GridBase
GridBase 컨트롤

index
Type: CellIndex
변경된 CellIndex

text
Type: *
셀이 입력된 값

Return

None.

Examples


gridView.onSearchCellButtonClick = function (grid, index, text) {
    console.log("onSearchCellButtonClick:" + index.itemIndex + "," + index.column + ", " + text);
};