dhtmlXComboFromSelect enableFilteringMode DefaultValue

Does any way exist to set a default value for a combo box created from a select when the values in the combo come from an external xml source (not using loadxml())


var combo = new dhtmlXComboFromSelect('element');

combo.enableFilteringMode(true, url, true);

How would I set a default value for the above?

You may use setComboText method:

combo.enableFilteringMode(true, url, true);
combo.setComboText(defaultText);