SMART datagrid v.1 > Classes > DisplayOptions
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 Renderer, DataCellRenderer.showTooltip should also be specified as true.
Defaults to true.
grid.setOptions({
display: {
showTooltip: false
}
});
grid.setDisplayOptions({
showTooltip: false
});
grid.displayOptions().setShowTooltip(false);