I like to ask if anyone knows how to validate 3 fields but you must fill only one, not the other 2.
Example :
<input name="field1" type="numeric">
<input name="field2" type="numeric">
<input name="field3" type="numeric">
field1,field2,field2 can be filled but if i fill field1, field2 and field3 passes, but if i fill field1 and field2, validation triggered and only one of them can be filled.
Thanks