Bom dia estou com um problema na hora de renderizar um componente aqui está meu código:
<body> <h:form> <div style="width: 25%; padding-top: 50px;"> <p:panel header="Cadastro" style="padding:0px; border:0;">
> <h:messages id="menssages" />
> <h:panelGrid id="gridLogin" columns="2">
>
> <h:outputLabel value="User Id:" for="user" />
>
> <p:inputText id="user" style="width:130px;"
> value="#{cadastroBean.cadastro.userid}" required="true"
> requiredMessage="O Campo UserId é obrigatório" />
>
> <h:outputLabel value="Pin:" for="pin" />
>
> <p:inputText id="pin" style="width:130px;"
> value="#{cadastroBean.cadastro.pin}" required="true"
> requiredMessage="O Campo Pin é obrigatório" maxlength="10" />
>
> <h:outputLabel value="Password:" for="password" />
>
> <p:password id="password" style="width:130px;" feedback="true"
> weakLabel="easy" goodLabel="middle" strongLabel="hard"
> value="#{cadastroBean.cadastro.passwordValue}" maxlength="20"
> requiredMessage="Campo Password Obrigatório" required="true" />
>
> <p:commandButton value="Gravar" title="Grava"
> action="#{cadastroBean.gravar}">
> <f:ajax execute="@form" render="@form" />
> </p:commandButton>
>
>
> <p:commandButton value="Pesquisar" title="Pesquisa"
> action="#{cadastroBean.pesquisar}">
> <f:ajax execute="user, pin" render="menssages" />
> </p:commandButton>
> </h:panelGrid> </p:panel> </div> </h:form> </body> </html>
Gostaria de saber se eu posso deixar meu desse jeito?