headerTooltip
Optional. Controls the header tooltips
headerTooltip?: boolean;
Default value: trueExample
const grid = new dhx.Grid("grid_container", {
columns: [
// columns config
],
data: dataset,
tooltip: false, // Disable all tooltips
headerTooltip: true, // Enable all header tooltips
});
The headerTooltip
config redefines the value of the tooltip
config for the header tooltips.
Change log:
added in v8.2