SMART datagrid v.1 > Classes > DisplayOptions

[ grids ver.1.3.5]   Back  Forward

DataLudi.DisplayOptions.showTooltip  property

If it is true, when the mouse is over the data cell or column header cell, it will display the tooltip. 

It should return HTML text which will be displayed in tooltip from GridBody.tooltipCallback, GridHeader.tooltipCallback, etc. In addition, if specify the tooltip in each Data Cell RendererDataCellRenderer.showTooltip should also be specified as true

Defaults to true.

Getter
function showTooltip(): Boolean
Setter
function setShowTooltip(value: Boolean)
Code -1
    grid.setOptions({
        display: {
            showTooltip: false
        }
    });
Code -2
    grid.setDisplayOptions({
        showTooltip: false
    });
Code -3
    grid.displayOptions().setShowTooltip(false);
See Also
GridBody.tooltipCallback
GridHeader.tooltipCallback
GridFooter.tooltipCallback
HeaderSummary.tooltipCallback
DataCellRenderer.showTooltip
Examples
Link Cell Renderer
Tooltips