SMART datagrid v.1 > Classes > GridBase
DataLudi.GridBase.onRowChecked event
It will be fired when checked state of Grid Row is changed.
function onRowChecked (grid: GridBase, row: GridRow, checked: Boolean);
- Returns
- Void
- Parameters
- grid - GridBase.
- row - GridRow.
- checked - Boolean.
Code -1
grid.onRowChecked = function (grid, row, checked) {
console.log("row " + row.index() + "The checked state of " + checked + "is changed as .");
};
- See Also
- GridRow
- checked
- onRowsChecked
- checkRow
- toggleChecked
- Examples
- Check Bar
- Checkable Expression & Callback