无法在GWT ui binder中更新工具提示标题

时间:2015-09-07 06:08:56

标签: java gwt gwtbootstrap3

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

2 个答案:

答案 0 :(得分:4)

在此假设gwtbootstrap3,每当您更改reconfigure()的属性时,都需要调用Tooltip

答案 1 :(得分:2)

如果要以编程方式添加按钮的工具提示,请按钮的setTitle。

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

share.setTitle(&#34;新工具提示文字&#34;);