gwtbootstrap3工具提示包裹多个元素?

时间:2017-04-29 09:59:04

标签: html twitter-bootstrap gwt tooltip gwtbootstrap3

我在gwt项目中使用gwtbootstrap3版本:0.9.4。 我想使用bootstraps工具提示作为导航栏符号。

<ui:UiBinder xmlns:ui="urn:ui:com.google.gwt.uibinder"
xmlns:g="urn:import:com.google.gwt.user.client.ui"
xmlns:b="urn:import:org.gwtbootstrap3.client.ui">...

如果我将Tooltip包装在其对应Java类的ui.xml文件中的Anchor周围,它可以正常工作:

<b:Tooltip ui:field="someName" text="TEST">
    <g:Anchor ui:field="someOtherName">someText</g:Anchor>
</b:Tooltip>

但现在出现了问题: 如果我想要包含一个包含另一个元素(如span)的Anchor,则在运行项目时不再显示工具提示文本(通过悬停)。事实上,此图标根本没有工具提示。但该项目仍在编制和运行。

<b:Tooltip text="TEST">
    <g:Anchor ui:field="someName">
        <span class="glyphicon glyphicon-someglyph white" aria-hidden="true"></span>
        <span class="white">someText</span>
    </g:Anchor>
</b:Tooltip>

我阅读了Tooltip类的文档: https://gwtbootstrap3.github.io/gwtbootstrap3-demo/apidocs/org/gwtbootstrap3/client/ui/Tooltip.html

但据我所知,没有明确表示Tooltip只允许内部有一个元素,现在有人如何解决这个问题?

谢谢!

0 个答案:

没有答案