Is there any problem when I mix JSF with plain HTML?
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
19:30 UTC
Read the original article
Hit count: 234
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?
© Stack Overflow or respective owner