I am getting the following error when using select2 plugin on initSelection
.
Error: Uncaught Error: No select2/compat/initSelection
is the error I am getting.
Hope somebody helps me in sorting out the inistselection
issue.
JS:
$(".doctor_id_pat").select2({
placeholder: "Search Users",
minimumInputLength: 2,
ajax: {
url: "/listallergiesajax",
dataType: 'json',
data: function(term) {
return {
q: term
};
},
results: function(data, page) {
return {
results: $.map(data, function(item) {
return {
text: item.text,
id: item.id
}
})
};
},
},
initSelection: function(element, callback) {
$.ajax("/listallergiesajax", {
dataType: "json"
}).done(function(data) {
callback(data.results[0]);
});
}
});
$(".doctor_id_pat").select2({});
what is select2? – Reprieve