Selectize.js manually add some items
javascript, jquery, selectize.js
Solution
This plugin does not attempt to load an item metadata from the server. You need to first add an option using `addOption()` method. Next, you can use `addItem()`.
v.selectize.addOption({value:13,text:'foo'}); //option can be created manually or loaded using Ajax
v.selectize.addItem(13);
Problem
I want add some items to a selectized input after user clicks on a button. The input data are loaded via Ajax. When I call addItem(value) no thing happens. But if I try to type some string in the input it loads data and after this addItem(value) will works. https://github.com/brianreavis/selectize.js/blob/master/docs/api.md