2 Replies Latest reply on Oct 16, 2007 10:11 PM by samdoyle

    Why does this not render data when I see the methods being c

    samdoyle

      So this simple snippet results in my appropriate breakpoints getting hit such as the get description but yet nothing is rendered on the page??

       <c:forEach items="#{user.getUserAgencies()}" var="userAgency">
       <c:forEach items="#{userAgency.getAgencyIncidentTypes()}" var="incidentType">
       <h:outputText value="#{userAgency.agencyName()}" />
       <h:outputText value="#{incidentType.getDescription()}" />
       </c:forEach>
       </c:forEach>