Does exist any problem with mixing jsf html xhtml?
Posted
by RhigoHR
on Stack Overflow
See other posts from Stack Overflow
or by RhigoHR
Published on 2010-05-16T18:03:26Z
Indexed on
2010/05/16
18:10 UTC
Read the original article
Hit count: 223
Hi! I have the next code:
<li> <h:form rendered="#{!loginController.session}">
<h3>Inicio de Sesión</h3>
<h:panelGrid columns="2" cellpadding="7" >
<h:outputText value="Usuario: " />
<h:inputText id="loginname" value="#{loginController.loginname}" maxlength="16" />
<h:outputText value="Contraseña: " />
<h:inputSecret id="password" value="#{loginController.password}" maxlength="16"/>
<h:outputText value="" />
<h:commandButton value="Iniciar Sesión" action="#{loginController.CheckValidUser}" />
</h:panelGrid> </h:form> </li>
But when run that the page doesn't render the form, anybody can tell me why?
Thx
© Stack Overflow or respective owner