Closed fmpoffice closed 6 years ago
This plugin only supports suggestions.
If you are looking to have something similar to dropdown then check out React Select
thank you
for information, i use this snippet (with jquery)
$('#autocomplete').on("keyup keydown",function(e) {
var code = e.keyCode || e.which;
if (code != '9' && code != '13' ) {
e.preventDefault();
}
});
how can to only fill in values from the drop-down box ?
Realization effect: http://jqueryui.com/resources/demos/autocomplete/combobox.html