I have gallery that collects all the items the user adds from the previous screen using a "Add to Cart" button.
In the gallery there's a quantity text input (varQty) and two buttons (+ and -) "See below Image"
For the buttons, I use the following code:
Set(varQty, varQty + 1)
Set(varQty, varQty - 1)
When I have more than 1 item in the gallery and click on the buttons, it updates the quantity for all the items.
How to I let the buttons only update the respective item I'm trying to update?
