From my module I added a block with a checkbox into checkout_onepage_review. Now I could like to make sure this checkbox was selected. Therefor I am observing the sales_order_place_after event where I can capture the result.
How do I use the the Magento JavaScript validator in the last checkout step (review).
If I add class="checkbox required-entry" nothing happens because the button uses review.save() which does not call the validator. Also it does not send my checkbox value...
required-entryis that the button functionreview.save()does not use a validator because normally there is no need to. I got to add this somehow... – PiTheNumber Nov 21 '13 at 09:56