This commit is contained in:
James Cole
2018-01-22 18:37:59 +01:00
parent bc4d801c12
commit 9a26d6d49f
9 changed files with 33 additions and 34 deletions

View File

@@ -296,7 +296,7 @@ function updateTriggerInput(selectList) {
function createAutoComplete(input, URI) {
input.typeahead('destroy');
$.getJSON(URI).done(function (data) {
input.typeahead({source: data});
input.typeahead({source: data, autoSelect: false});
});
}