SMART datagrid v.1 > Classes > DisplayOptions

Back  Forward

DataLudi.DisplayOptions.hintDuration  property

It specifies the display period of tooltip box in data cell in milliseconds. 

If specify as less than 0, the mouse will be displayed until it moves out of the cell. 

Defaults to 2000.

Getter
function hintDuration(): Integer
Setter
function setHintDuration(value: Integer)
Code -1
    grid.setOptions({
        display: {
            hintDuration: 1000
        }
    });
Code -2
    grid.setDisplayOptions({
        hintDuration: 1000
    });
Code -3
    grid.displayOptions().setHintDuration(1000);
See Also
LinkCellRenderer
Examples
Link Cell Renderer