Olá,
estou desenvolvendo uma página xhtml utilizando jsf e facelets, mas não estou conseguindo implementar
links em uma tabela, alguém poderia auxiliar?
[code]
<ui:define name="pageTitle">TESTE</ui:define>
<ui:define name="pageHeader">Teste de Dados</ui:define>
<ui:define name="pageBody">
<form jsfc="h:form">
<table jsfc="h:dataTable" value="#{visao.listaAdvogados}" var="list"
border="1">
<tr jsfc="h:column">
#{list.nome}
</tr>
<tr jsfc="h:column">
#{list.bairro}
</tr>
<tr jsfc="h:column">
#{list.telefone}
</tr>
</table>
<input type="submit"
jsfc="h:commandButton" action="#{visao.voltar}" value="Voltar"/>
</form>
</ui:define>
</ui:composition>
[/code]Obrigado