[SEAM] 标签<rich:panel>中<f:facet>不能显示
backbase
2009-02-09
<rich:panel id="userGrid" bodyClass="center" style="width:600px;height:400px;"> <f:facet name="header"> <h:outputText value="用户登录"></h:outputText> </f:facet> <h:panelGrid columns="2" style="text-align:center;"> <h:outputLabel style="font-size:12px;font-weight:bold">用户名</h:outputLabel> <h:inputText id="username" value="#{identity.username}" style="width: 175px;" /> <h:outputLabel style="font-size:12px;font-weight:bold">密码</h:outputLabel> <h:inputSecret id="password" value="#{identity.password}" style="width: 175px;"/> <f:facet name="footer"> <h:commandButton value="登录" styleClass="buttonBox" action="#{identity.login}"/> </f:facet> </h:panelGrid> </rich:panel><h:messages /> 在我的一个页面中有如上一个小片段 代码 但 <f:facet name="header"> <h:outputText value="用户登录"></h:outputText> </f:facet> 就是不显示 不知道为什么了,请知道的朋友给点建议,谢谢!
|