SMART datagrid v.1 > Classes > GridBase

Back  Forward

DataLudi.GridBase.onErrorClicked  event

It will be fired if double click the cell when there is an error in the footer cell or group footer cell. 

function onErrorClicked (grid: GridBase, index: CellIndex, error: *);
Returns
Void
Parameters
grid - GridBase.
index - CellIndex.
error - *.
Code -1
    grid.onErrorClicked = function (grid, index, error) {
        alert(error);
    };
See Also
GridFooter
Examples
Column Footer