mygy25
1
Hi !
I’m trying to add new option to multicombo (using this guide Advanced Configuration of Popup Selectors of Interacting with Users, Controls Guide Webix Docs)
Everything is fine. But then I can’t manually set new (added) values to multicombo.
Here is snippet Code Snippet.
Is there any way to fix it. It is very critical for my project
maksim
2
Check the updated snippet
http://webix.com/snippet/cf6494e4
For now, parameter of setValue for multicombo must be a string.
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”} ]);