Adding values to multicombo.

On your multicombo demo, you have an email selector that selects predefined emails. Is it possible to add new values to the multicombo on the fly if the item does not exist? I.e. in the “To” box, if I were to type “Kevin” but the entry does not exist, I’d like to add the entry and display it in the box like the other entries.

The demo: http://docs.webix.com/samples/60_pro/02_form/06_multicombo.html

Multi-combo doesn’t support use-case, and adding such behavior may be not easy. A bit more simple will be to subclass the suggest list and add “Add new” button to the end of a suggest list. In such case it will be possible to add new option if list doesn’t contain the required one.

Okay, thank you for the response. I will go with using an add new button.