Dynamically adding/setting new options/values to multicombo

Hi !
I’m trying to add new option to multicombo (using this guide http://docs.webix.com/desktop__advanced_combo.html#definingoptionsdynamically)

Everything is fine. But then I can’t manually set new (added) values to multicombo.

Here is snippet http://webix.com/snippet/cd0dcfa8.

Is there any way to fix it. It is very critical for my project :wink:

Check the updated snippet

http://webix.com/snippet/cf6494e4

For now, parameter of setValue for multicombo must be a string.

Thanks !!!

or we can try something like this, if we want to add more items one time:

$$(“multicombo”).getPopup().getList().parse([{id:“asdf”,value:“asdf”},{id:“sdfg”,value:“sdfd”} ]);