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

Filed under:
|
|

Hi! I have the next code:

<li>    <h:form    rendered="#{!loginController.session}">
     <h3>Inicio de Sesi&oacute;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&ntilde;a: " />
        <h:inputSecret id="password" value="#{loginController.password}"     maxlength="16"/>
        <h:outputText value="" />
        <h:commandButton value="Iniciar Sesi&oacute;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

Related posts about jsf

Related posts about XHTML