I have a multiselect combobox which is targetcombo of another combobox.
Following are some values from database.
101 - Pink
102 - Red
103 - Dark Blue
I am setting value of combobox using setValue. But I found that it works only if the value does not contain space. For example-
combobox1.setValue(101); // Works
combobox1.setValue(102); // Works
combobox1.setValue(103); // Does Not Work
Also,
var val = '101,102';
combobox1.setValue(val.split(',')); // Works well. Displays 'Pink, Red'
But
var val = '101,103';
combobox1.setValue(val.split(',')); // Displays only 'Pink'
Am I doing anything wrong here? or missed anything. Is the issue relalted to targetcombo. Please help.