Handsontable可以选择在标题中显示工具提示。 https://docs.handsontable.com/pro/1.1.1/demo-header-tooltips.html
有没有其他方法可以做到不需要“Pro”版本?
我在项目中也有Angular-UI Tooltip所以可能会以某种方式覆盖。
答案 0 :(得分:5)
您可以在定义colHeaders时直接添加html代码添加工具提示:
colHeaders: ["Trend", "Year", '<span title="External Color"> External Color </span>', '<span title="Internal Color"> Internal Color </span>'],
请参阅此JSFiddle
中的工作示例如果你想使用像bootstrap或Angular这样的自定义工具提示,甚至完全自定义,你可以自己决定,但你的项目中已经包含的Angular-UI工具提示不应该阻止你做到这一点。 / p>