mirror of
https://github.com/tim-krehan/shopping-list.git
synced 2024-11-23 22:30:41 +01:00
Merge branch '29-fix-typeahead-in-create-update-recipe-form' into 'develop'
Resolve "fix typeahead in create/update recipe form" See merge request bluekay/shopping-list!11
This commit is contained in:
commit
08531b6502
4 changed files with 16 additions and 7 deletions
|
@ -8,7 +8,9 @@ function autocomplete() {
|
|||
data: {
|
||||
q: search
|
||||
},
|
||||
success: function (data) { createAutocompleteDropdown(elem, JSON.parse(data)); }
|
||||
success: function (data) {
|
||||
createAutocompleteDropdown(elem, JSON.parse(data));
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
@ -17,6 +19,10 @@ function createAutocompleteDropdown(elem, values) {
|
|||
var dropdownItems = dropdownmenue.find(".dropdown-item");
|
||||
dropdownItems.remove();
|
||||
|
||||
if (!(dropdownmenue.hasClass("show"))){
|
||||
elem.click();
|
||||
}
|
||||
|
||||
for (index = 0; index < values.length; index++) {
|
||||
var value = values[index];
|
||||
var regex = new RegExp((elem).val(), "ig");
|
||||
|
@ -31,4 +37,6 @@ function createAutocompleteDropdown(elem, values) {
|
|||
function dropdownButtonClick() {
|
||||
var string = $(this).data("val");
|
||||
$('#' + $(this).attr("aria-textfield")).val(string);
|
||||
$('[aria-labelledby=' + $('#' + $(this).attr("aria-textfield")).attr("id") + ']').find(".dropdown-item").remove();
|
||||
$('[aria-labelledby=' + $('#' + $(this).attr("aria-textfield")).attr("id") + ']').append('<button class="dropdown-item" type="button" data-value="-1">Tippen um zu suchen... </button>');
|
||||
}
|
1
bin/bootstrap.autocomplete.js
vendored
1
bin/bootstrap.autocomplete.js
vendored
File diff suppressed because one or more lines are too long
|
@ -1,6 +1,6 @@
|
|||
$(document).ready(function () {
|
||||
$("#addItem").click(addItem);
|
||||
$("#cancel").click(function(){window.history.back()});
|
||||
$("#cancel").click(function () { window.history.back() });
|
||||
$("input[type=number]").on("focus", function () { $(this).select(); });
|
||||
$("input[type=text]").on("focus", function () { $(this).select(); });
|
||||
|
||||
|
@ -20,10 +20,12 @@ function removeItem(elem) {
|
|||
function addItem() {
|
||||
var dataID = parseInt($("#addItem").data("count")) + 1;
|
||||
$("#addItem").data("count", dataID);
|
||||
|
||||
|
||||
var clone = $($(".ingredientRow")[0]).clone();
|
||||
|
||||
clone.find("input[type=text]").attr("name", ("ingredient[" + dataID + "][Name]"));
|
||||
clone.find("input[type=text]").attr("id", ("dropdownMenuAutocomplete-" + dataID));
|
||||
clone.find(".dropdown-menu").attr("aria-labelledby", ("dropdownMenuAutocomplete-" + dataID));
|
||||
clone.find("input[type=text]").val("");
|
||||
clone.find("input[type=text]").on("input", autocomplete);
|
||||
clone.find("input[type=text]").on("focus", function () { $(this).select(); });
|
||||
|
@ -35,4 +37,4 @@ function addItem() {
|
|||
$(".ingredientRow").last().after(clone);
|
||||
|
||||
clone.find("input[type=number]").focus();
|
||||
}
|
||||
}
|
|
@ -56,9 +56,9 @@
|
|||
</select>
|
||||
|
||||
<div class="input-group">
|
||||
<input type="text" data-apiurl="/api/recipes/auto" data-strlen="2" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" id="dropdownMenuAutocomplete" class="autocomplete-ingredient form-control dropdown" name="ingredient[1][Name]" placeholder="Zutat" autocomplete="off" required>
|
||||
<input type="text" data-apiurl="/api/recipes/auto" data-strlen="2" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" id="dropdownMenuAutocomplete-1" class="autocomplete-ingredient form-control dropdown" name="ingredient[1][Name]" placeholder="Zutat" autocomplete="off" required>
|
||||
|
||||
<div class="dropdown-menu" aria-labelledby="dropdownMenuAutocomplete">
|
||||
<div class="dropdown-menu" aria-labelledby="dropdownMenuAutocomplete-1">
|
||||
<button class="dropdown-item" type="button" data-value="-1">Tippen um zu suchen... </button>
|
||||
</div>
|
||||
|
||||
|
|
Loading…
Reference in a new issue