I had an issue related to deleting a product from the shopping cart. I allways received the wrong id in my action. I solved this issue by enclosing the delete submit within a form tag.
However a new issue arises ... <<sigh>>
Within the first form tag (which contains the delete submit) I declare the following :
At the bottom of the page i indeed have a checkout in my case order button.
However i also have an update button. The action uses the above declared Id and amount values to update the amounts contained by the shoppingcart.
When i try to obtain the values of Id and amount in my action both are null.
Probably because they are not contained within the same form tag as the submit.
Could anyone please help me out on this issue?