I'm implementing a typical shopping cart, based on PrimeFaces' dataGrid component. Below is some sample code.
Everything is ok, but the inputText field causes the bean property to be set as many times as there are elements in the page. So, if I put 1 in the first item in the datagrid, it is set, but it's set to 0 N times after this, thus overwriting it.
I guess this is because each inputText has the same id. I have tried to enclose the input + commandLink within their own form, but that doesn't work. I am sure this is a common case, and there must be an elegant solution.
<h:form id="itemsForm" prependId="false">
<p:dataGrid id="itemList" value="#{itemsBean.items}" var="item" type="unordered" paginator="true" rows="12" columns="1">
<p:column>
<p:inputText value="#{cartBean.quantity}"/>
<p:commandLink actionListener="#{cartBean.add}" update=":cartPanel" value="Add to cart">
<f:setPropertyActionListener target="#{cartBean.itemToCart}" value="#{item}"/>
</p:commandLink>
</p:column>
</p:dataGrid>
</h:form>