diff --git a/public/js/components/Stv/Studentenverwaltung.js b/public/js/components/Stv/Studentenverwaltung.js index c810fef91..a958fe983 100644 --- a/public/js/components/Stv/Studentenverwaltung.js +++ b/public/js/components/Stv/Studentenverwaltung.js @@ -478,6 +478,18 @@ export default { }, showAlertNoSelectedStudent(){ this.$fhcAlert.alertError(this.$p.t('ui', 'alert_chooseStudent')); + }, + showAlertMultipleStudents() { + this.$fhcAlert.alertError(this.$p.t('ui', 'alert_chooseOnlyOneStudent')); + }, + showAlertNoGroupChosen(){ + this.$fhcAlert.alertError(this.$p.t('ui', 'alert_chooseGroupSem')); + }, + showMenu(refName) { + bootstrap.Dropdown.getOrCreateInstance(this.$refs[refName]).show(); + }, + hideMenu(refName) { + bootstrap.Dropdown.getOrCreateInstance(this.$refs[refName]).hide(); } }, created() { @@ -653,19 +665,30 @@ export default {