SMART datagrid v.1 > Classes > DisplayOptions
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.
grid.setOptions({
display: {
tooltipDuration: 4000,
tooltipDelay: 500
}
});
grid.setDisplayOptions({
tooltipDuration: 4000,
tooltipDelay: 500
});
grid.displayOptions.setTooltipDuration(4000);