From 37af8ea331f725e09b61f36e41fec813fc842fe2 Mon Sep 17 00:00:00 2001 From: Manfred Date: Thu, 2 Jun 2022 12:55:25 +0200 Subject: [PATCH] Gesamtzeilenanzahl wird im FAS immer angezeigt X/Y --- content/student/studentoverlay.js.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/content/student/studentoverlay.js.php b/content/student/studentoverlay.js.php index c4c2ee27c..4ba8463e6 100644 --- a/content/student/studentoverlay.js.php +++ b/content/student/studentoverlay.js.php @@ -1025,7 +1025,10 @@ function StudentCount() // **** function StudentAuswahl() { - document.getElementById('student-toolbar-label-anzahl').value = 'Anzahl: ' + StudentCount(); + var tree=document.getElementById('student-tree'); + var items = tree.view.rowCount; //Anzahl der Zeilen ermitteln + + document.getElementById('student-toolbar-label-anzahl').value = 'Anzahl: ' + StudentCount() + '/' + items; if(!StudentTreeLoadDataOnSelect) {