Hi all,
I am building a webshop and I would like to be able to change the quantity of products or remove them from my gallery.

I can think of two options:
- use a dropdown (when choosing '0' is deleting the product from the list
- using buttons (up and down arrow) to modify the quantity or put it to '0' for deletion
Currently the dropdown is configured like this:
Sequence(ThisItem.Amount+3,0,1)
In my gallery the items ar grouped
AddColumns(
GroupBy(
basket,
"itemname",
"itemopt",
"itemprice",
"itemname_rec"
),
/* "Total", Sum(itemname_rec, itemprice), */
"Amount",
Sum(
itemname_rec,
itemcount
)
)
I am really stuck here and any help is appreciated!