SMART datagrid v.1 > Classes > DisplayOptions

[ grids ver.1.3.5]   Back  Forward

DataLudi.DisplayOptions.tooltipDelay  property

It specifies the waiting time just before displaying the tooltip in milliseconds. 

It is used to control to display the tooltip too many times in a short period of time. You can set the period of displaying the tooltip by tooltipDuration

Defaults to 400 ms.

Getter
function tooltipDelay(): Integer
Setter
function setTooltipDelay(value: Integer)
Code -1
    grid.setOptions({
        display: {
            tooltipDelay: 0,
            tooltipDuration: 5000
        }
    });
Code -2
    grid.setDisplayOptions({
        // Display the tooltip immediately without delay.
        tooltipDelay: 0,
        tooltipDuration: 5000
    });
Code -3
    grid.displayOptions().setTooltipDelay(0);
See Also
tooltipDuration
tooltipStyles
DataCellRenderer.showTooltip
GridBody.tooltipCallback
GridHeader.tooltipCallback
GridFooter.tooltipCallback
HeaderSummary.tooltipCallback
Examples
Tooltips
Link Cell Renderer