Hi Ryan,
I've found a way to use only 1 action and 1 form bean to receive a submit from any of the forms in jsp. Form in the jsp can all have the same name and the same action. When a form is submitted the form bean associated with the action is populated correctly with the values inside the form. Than the trick is just to get the productId from the form bean and not from the engine:
to
In this way no matter what is the selected product you insert in the basket the product that has been submitted by the form.
Ciao,
Mirko.
I've found a way to use only 1 action and 1 form bean to receive a submit from any of the forms in jsp. Form in the jsp can all have the same name and the same action. When a form is submitted the form bean associated with the action is populated correctly with the values inside the form. Than the trick is just to get the productId from the form bean and not from the engine:
Quoteb.setProductId(kkAppEng.getProductMgr().getSelectedProduct().getId());
to
Quoteb.setProductId(new Integer(acf.getProductId()).intValue());
In this way no matter what is the selected product you insert in the basket the product that has been submitted by the form.
Ciao,
Mirko.