我是JSF新手并做一些示例登录应用程序。我只需要工具提示就需要用户名,密码。
我在下面添加了额外的jsf元素rich:toolTip
元素添加如下,我的问题是,如何隐藏这个额外的元素。
我想隐藏这个元素而不从jsp中删除。 当我从浏览器中检查源代码时,UI被破坏并增加了一些额外的空间。
<h:panelGrid>
<h:outputText value="username"/>
<h:inputText value="username">
<rich:toolTip value="enter uname" event="onmouseover"
direction="bottom-right" layout="block"/>
</h:inputText>
<h:outputText value="password"/>
<h:inputText value="password">
<rich:toolTip value="enter password" event="onmouseover"
direction="bottom-right" layout="block"/>
</h:inputText>
<rich:toolTip value="how to hide this element" event="onmouseover"
direction="bottom-right" layout="block"/>
</h:panelGrid>
有人可以为此提供帮助吗?