我正在尝试向按钮添加工具提示。工具提示很好。但是我只能在构造函数中使用我的 java 代码更新工具提示的标题,但不能在其他方法中。有什么问题?
<b:Tooltip title="..." placement="BOTTOM" ui:field="sharedWith">
<b:Button text="Share"
type="PRIMARY" ui:field="share" icon="USER_PLUS">
</b:Button>
</b:Tooltip>
Java代码:
sharedWith.setTitle(members.size() + " " + member);
sharedWith 是工具提示的 ui:field。