启用选项卡时,工具提示有效,但当选项卡未显示工具提示时。 这是标签初始化:
new Fc.Components.SelectionTab({
tabConfig: {
disabled: true,
tooltip: Fc.Lang.app.messages.not_register
},
cmp: this
});
答案 0 :(得分:0)
您需要设置要提及的组件的样式属性pointer-events
。
在您的示例中:
new Fc.Components.SelectionTab({
tabConfig: {
disabled: true,
style: {
pointerEvents: 'all'
},
tooltip: Fc.Lang.app.messages.not_register
},
cmp: this
});