4

How can I make sure with magento form validation that one of the multiple input radio is selected ?

Is there a magento way to achieve that or I should do it using prototype/jquery ?

1 Answers1

4

You need to use validate-one-required-by-name in the class name of the radio button.

Eg : <input type='radio' class="validate-one-required-by-name"/>

Or

use validate-one-required on the last radio in the group.

Deepak Mankotia
  • 4,404
  • 6
  • 30
  • 55