I am using the combo to generate a list of checkboxes, and then using the setValue() method to set the combos selected values, all of that works OK.
But when I validate() or isValid() it always returns false even though the field has a value and meets the criteria of > 1 char:
$('#ccx').combo({
      validType       : 'minLength[1]',
      required        : true,
      ... lots more code...
});
> $('#ccx').combo('getValue')
< "HAND-ASSEMBLY,MARKETING,PRESSING"
> $('#ccx').combo('isValid')
< false