SMART datagrid v.1 > Classes > GridBase

Back  Forward

DataLudi.GridBase.onEditChanged  event

It will be fired whenever the value of editor is changed during displaying the editor. 

function onEditChanged (grid: GridBase, index: CellIndex, value: *);
Returns
Void
Parameters
grid - GridBase.
index - CellIndex.
value - *.
Code -1
    grid.onEditChanged = function (grid, index, value) {
        console.log("editor value changed: " + value);
    };
See Also
onEditCommitted
onEditCanceled
onEditCellUpdated
Cell Editing Overview
Examples
Cell Editing
Edit Events
Edit Keys