You describe well how to disable tooltips on just a few columns. However, without having to disable every column you don't want a tooltip on, is there a way to disable tooltips by default, and only those columns specifically set to AllowToolTips(true) will display them?
- John
{ columnKey: "ProductID", allowTooltips: false },
{ columnKey: "Name", allowTooltips: true },
{ columnKey: "ProductNumber", allowTooltips: false }
],