1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2025-08-05 22:49:34 +02:00

Better autocomplete field

This commit is contained in:
Yohann D'ANELLO
2020-08-02 09:20:21 +02:00
parent 2f018f8c9d
commit f148c8dacb
2 changed files with 8 additions and 3 deletions

View File

@@ -18,7 +18,8 @@ $(document).ready(function () {
html += li(prefix + "_" + obj.id, obj[name_field]);
});
$("#" + prefix + "_list").html(html);
let results_list = $("#" + prefix + "_list");
results_list.html(html);
objects.results.forEach(function (obj) {
$("#" + prefix + "_" + obj.id).click(function() {
@@ -32,6 +33,10 @@ $(document).ready(function () {
if (input === obj[name_field])
$("#" + prefix + "_pk").val(obj.id);
});
if (results_list.children().length === 1 && e.originalEvent.keyCode >= 32) {
results_list.children().first().trigger("click");
}
});
});
});