SMART datagrid v.1 > Classes > DisplayOptions

[ grids ver.1.3.5]   Back  Forward

DataLudi.DisplayOptions.tooltipDuration  property

It specifies the period of displaying the tooltip in milliseconds. 

After this period, the tooltip will be automatically closed. You can set the waiting time just before displaying the tooltip by tooltipDelay

Defaults to 4000 ms.

Getter
function tooltipDuration(): Integer
Setter
function setTooltipDuration(value: Integer)
Code -1
    grid.setOptions({
        display: {
            tooltipDuration: 4000,
            tooltipDelay: 500
        }
    });
Code -2
    grid.setDisplayOptions({
        tooltipDuration: 4000,
        tooltipDelay: 500
    });
Code -3
    grid.displayOptions.setTooltipDuration(4000);
See Also
tooltipDelay
tooltipStyles
DataCellRenderer.showTooltip
GridBody.tooltipCallback
GridHeader.tooltipCallback
GridFooter.tooltipCallback
HeaderSummary.tooltipCallback
Examples
Tooltips
Link Cell Renderer