Füge Funktionalität zum Fokussieren des ersten Eingabefelds im Event-Formular hinzu und implementiere das Scrollen zum Formular bei der Erstellung und Bearbeitung von Veranstaltungen.

This commit is contained in:
Torsten Schulz (local)
2025-10-07 16:06:17 +02:00
parent cff48550ae
commit 7e6128dec4
2 changed files with 24 additions and 0 deletions

View File

@@ -312,6 +312,15 @@ export default {
this.assignedImage = null;
this.imageFilename = '';
},
focusFirstField() {
// Fokussiert das erste Eingabefeld (Name)
this.$nextTick(() => {
const nameInput = document.getElementById('name');
if (nameInput) {
nameInput.focus();
}
});
}
}
};
</script>