1

我正在尝试向按钮添加工具提示。工具提示很好。但是我只能在构造函数中使用我的 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。

4

2 回答 2

4

假设此处为 gwtbootstrap3,您需要reconfigure()在更改Tooltip.

于 2015-09-07T07:36:16.650 回答
2

如果要以编程方式为按钮添加工具提示,请为按钮设置标题。

 <b:Button text="Share" type="PRIMARY" ui:field="share" icon="USER_PLUS">
                    </b:Button>

share.setTitle("新工具提示文本");

于 2015-09-07T06:21:31.497 回答