SMART datagrid v.1 > Classes > GridBase
DataLudi.GridBase.onCellButtonClicked event
DataColumn.buttonのプロパティーの値がCellButton.ACTIONの時にボタンをクリックすれば発生する。
function onCellButtonClicked (grid: GridBase, index: CellIndex, button: Integer);
- Returns
- Void
- Parameters
- grid - GridBase.
カラムが含まれたグリッド
- index - CellIndex.
クリックしたボタンが表示されるセルの位置。
- button - Integer.
Code -1
grid.onCellButtonClicked = function (grid, index) {
alert(index.column.name());
}
- See Also
- onEditButtonClicked
- DataColumn
- CellButton