SMART datagrid v.1 > Classes > GridHeader
Callback function which returns HTML which will be displayed in tooltip when the mouse is over grid header cell for Certain Time.
In order to display tooltip, non-empty HTML should be returned from this callback, and DisplayOptions.showTooltip should be set as true first.
Defaults to null.
grid.setHeader({
tooltipCallback: function (column) {
return column.header().displayText();
}
});