How use selectize input ? (like Countries and Users list) ? any document for this type input?
Thanks
I think that's outside the scope of this project?
thanks, i mean sth like https://tabler.github.io/tabler/docs/cards.html, which for example is in docs demo for using card.
hey, @masihfathi!
require(['jquery', 'selectize'], function ($, selectize) {
$(document).ready(function () {
$('#input_selector').selectize({
delimiter: ',',
persist: false,
create: function (input) {
return {
value: input,
text: input
}
}
});
});
});
Most helpful comment
hey, @masihfathi!