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 ?