0

I've some problems.

It seems like JSF doesn't evaluate the entries of my collection.

<ace:dataTable id="user" var="entry" value="#{selfServicesArticlesBean.articleForUserList}">

            <c:forEach var="detailCommand" items="#{entry.articleAndNbArticles.listDetailCommandeSelfService}">
                    <ace:column>
                        <f:facet name="header">
                            <h:outputText id="articleText"
                                          value="#{detailCommand.article.nom}"/>
                        </f:facet>
                        <h:inputText value="#{detailCommand.quantite}" />
                    </ace:column>
            </c:forEach>

It never calls the associated getListDetailCommandeSelfService method.

Why ?

Kukeltje
  • 12,223
  • 4
  • 24
  • 47
ooooo
  • 1
  • So you thought it's possible to render a HTML table with possibly a different amount of columns per row..? – BalusC Feb 23 '16 at 12:59
  • How can I do it so ? thanks – ooooo Feb 23 '16 at 13:11
  • See abovelinked duplicate. Your technical problem with c:forEach is by the way answered in http://stackoverflow.com/q/3442380 and http://stackoverflow.com/q/12030126 – BalusC Feb 23 '16 at 13:12

0 Answers0