You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
jquery.js, materialize.min.js, jquery.materialize-autocomplete I included all of these packages, Styles are included as well, but nothing appears if i copy the example. I just get no autocomplete and no errors.
When I tried to use it a bit changed, i get autocomplete with corrupted files.
jquery.js, materialize.min.js, jquery.materialize-autocomplete I included all of these packages, Styles are included as well, but nothing appears if i copy the example. I just get no autocomplete and no errors.
When I tried to use it a bit changed, i get autocomplete with corrupted files.
var autocomplete = $('#symptoms').materialize_autocomplete({
limit: 20,
multiple: {
enable: true,
maxSize: 10,
},
appender: {
el: '#someEl'
},
getData: function (value, callback) {
console.log('sympt')
data = [];
$.ajax({
"type": "POST",
"dataType": "json",
"url": "{% url 'symptoms-autocomplete' %}",
"data": {'name': $('#symptoms').val()},
"success": function (result) {
data that is passed have format at it's said it the docs.

if i click on the dropdown it disappears and doesn't populate the field
The text was updated successfully, but these errors were encountered: