如何在加载页面时隐藏jsf元素

时间:2017-01-20 12:39:41

标签: jsf richfaces

我是JSF新手并做一些示例登录应用程序。我只需要工具提示就需要用户名,密码。

我在下面添加了额外的jsf元素rich:toolTip元素添加如下,我的问题是,如何隐藏这个额外的元素。

我想隐藏这个元素而不从jsp中删除。 当我从浏览器中检查源代码时,UI被破坏并增加了一些额外的空间。

sample.jsp

 <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>

有人可以为此提供帮助吗?

0 个答案:

没有答案