I have:
<ui:repeat id="projectsTable" var="project" value="#{projectsBacking.projectList}">
#{project.id}
<h:dataTable id="usersAssignedToProject#{project.id}" var="appUser" value="#{projectsBacking.getAllUsersAssignedToProject(project)}">
#{project.id}
<h:column>
<h:outputText value="#{appUser.getUsername()}"/>
</h:column>
</h:dataTable>
</ui:repeat>
Using <f:ajax>
I can not render h:dataTable
with given id, can someone explain me what is wrong in this code? When I checked by FireBug <table id="usersAssignedToProject">
, but in client side #{project.id}
was printed (before and inside datatable).