SMART datagrid v.1 > Classes > EditOptions

Back  Forward

DataLudi.EditOptions.hintOnError  property

If it is true, when the mouse is over the cell of editing row, if there is an error, it will display the error with tooltip. 

Defaults to false.

Getter
function hintOnError(): Boolean
Setter
function setHintOnError(value: Boolean)
Code -1
    grid.setOptions({
        edit: {
            hintOnError: true
        }
    });
Code -2
    grid.setEditOptions({
        hintOnError: true
    });
Code -3
    grid.editOptions().setHintOnError(true);
See Also
DataColumn.error
EditValidation
DataColumn.validations
Cell Editing Overview
Examples
Cell Editing