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:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user