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