I've got multiple inputs with the name test[]
<input type="text" placeholder="" class="m-wrap span12" name="test[]">
<input type="text" placeholder="" class="m-wrap span12" name="test[]">
<input type="text" placeholder="" class="m-wrap span12" name="test[]">
And the following rule:
rules: {
'test[]': {
required: true
}
},
The validation does not work. This is my first time trying to validate an array[] Please, anybody?