used part of last answer:
ComponentEvents.RequestEvents.RaiseComponentEvent(this, WizardManager.StepEventArgs,
"PageWizardManager", ComponentEvents.NEXT);
Used ".NEXT" becasue ".SAVE" did not work.
using .NEXT I then needed to cancel the move to next step and just use the saving part.
This works great.
Only issue i have now is that the following code that is used in the shopping cart item remove and in units causes my new control to disappear from shopping cart:
ComponentEvents.RequestEvents.RaiseEvent(sender, e, SHOPPING_CART_CHANGED);
When I comment it out all is good.
How terrible is it to leave ti commented out?
Or maybe someone knows why causes my custom controls to disappear and is there ea way to fix it?
THANKS :)