Chorverwaltung

This commit is contained in:
aschwarz
2023-04-04 16:44:50 +02:00
parent 2fe4e927ff
commit 7c84c994e8
96 changed files with 10205 additions and 727 deletions

View File

@ -36,3 +36,21 @@ $("#verlag").autocomplete({
}, {
minLength: 2
});
$("#songbook").autocomplete({
source: function(request, response) {
$.ajax({
type: "POST",
url: "../controller/admin_suche.php",
data: {
term: request.term,
function: "songbook"
},
success: response,
dataType: 'json',
delay: 10
});
}
}, {
minLength: 2
});