Simple code:
<select id="tt" class="easyui-combotree"
data-options="required:true,onlyLeafCheck:false,checkbox:true,cascadeCheck:true,required:true"
multiple style="width:300px;" name="test">
</select>
When I check the options, one by one, new <input type="hidden" name="test">'s appear for each checked option.
BUT they don't have the name with [] in the end, which results in only the first input's value being posted, instead of an array.
Shouldn't they be <input type="hidden" name="test[]" />?
Is this a bug? Am I missing something in the config part?
Thanks