0
我有一個購物車,在我的應用程序中是一個Datatable。我有一個微調,以表明產品的數量,我想,當微調值改變,刷新我的購物車,這是我的代碼:當更改微調值時更新購物車
<p:dataTable var="carro" value="#{productoBean.productos}">
<f:facet name="header">
<h:outputText value="Carrito de la Compra" />
</f:facet>
<p:column headerText="Producto">
<h:outputText value="#{carro.producto.nombre}" />
</p:column>
<p:column headerText="Cantidad">
<p:spinner value="#{carro.cantidad}">
<p:ajax listener="#{productoBean.refreshCantidad}" update="@this" />
</p:spinner>
</p:column>
<p:column headerText="Precio/Unidad">
<h:outputText value="#{carro.producto.precioUnidad} €" />
</p:column>
<p:column headerText="Valor">
<h:outputText value="#{carro.valor} €" />
</p:column>
</p:dataTable>
我不知道如何獲得該項目,其微調變化並更新其值。
我需要幫助,提前致謝。
問候。