Hi there,
I would like to create dhtmlxcombo control with checkbox.
I’m loading the form from xml using “loadStructString” method.
This generates combo control, but does not have checkbox inside the combo.
xml for the item looks like following:
<item type="combo" opt_type="checkbox" name="Location" label="Location Name"></item>
Notice I added “opt_type” attribute.
I tried creating one using client side script like following:
var z2 = new dhtmlXCombo("combo_zone3", "alfa3", 200, 'checkbox');
z2.addOption([[1, 1111], [2, 2222], [3, 3333], [4, 4444], [5, 5555]]);
And this works fine.
Thanks in advance.