Notizfeld und CSS

This commit is contained in:
2026-03-30 01:19:39 +02:00
parent 4c94066bf9
commit b34bfb0a47
8 changed files with 126 additions and 50 deletions

View File

@@ -43,6 +43,7 @@ function addApplication(){
data.first_name = $('#first_name_new').val();
data.last_name = $('#last_name_new').val();
data.location = $('#location_new').val();
data.notes = $('#notes_new').val();
console.log(data);
@@ -57,6 +58,7 @@ function addApplication(){
$('#first_name_new').val("");
$('#last_name_new').val("");
$('#location_new').val("");
$('#notes_new').val("");
location.reload();
} else {
alert(r.errorMessage);
@@ -102,6 +104,7 @@ function editApplication(applicationId){
data.first_name = $('#first_name_'+applicationId).val();
data.last_name = $('#last_name_'+applicationId).val();
data.location = $('#location_'+applicationId).val();
data.notes = $('#notes_'+applicationId).val();
data.mail = $('#mail_'+applicationId).val();
data.passport_type = $('#passport_type_'+applicationId).val();