hello all –
has something recently been updated that may have changed the way multiSelect works? a month ago or so, multiSelect drew a box without necessarily having to specify an initial array. i had to change my code like so:
old code:
$("div#jqxComboBox").jqxComboBox({multiSelect: true, width: 450, height: 50, showArrow: false });
new (fixed) code:
var fakeEmptyArray = new Array();
$("div#jqxComboBox").jqxComboBox({source: faleEmptyArray, multiSelect: true, width: 450, height: 50, showArrow: false });
recently the square input box stopped displaying properly unless i made this change. the issue only occurred when multiSelect set to true.
the solution is certainly an easy enough workaround, perhaps even considered better programming practices, but i wanted to ask anyways.