Hi how do I set the command object constraint nullable, blank, and custom for these 2 list, event[] and qty[] from the below html?
<div class="row-1">
<select name="event[]" class="form-control ">
<option selected="">abc</option>
<option selected="">def</option>
</select>
<input name="qty[]" >
</div>
<div class="row-2">
<select name="event[]" class="form-control ">
<option selected="">ghi</option>
<option selected="">jkl</option>
</select>
<input name="qty[]" >
</div>
class someCommand implements Validateable {
List eventComponent
List qty
static constraints = {
}
}