This commit is contained in:
Andreas Österreicher
2008-06-03 15:49:50 +00:00
parent be8208eea5
commit b8a5efcbdc
12 changed files with 170 additions and 15 deletions
+2 -1
View File
@@ -64,8 +64,9 @@ else
<menuitem label="Student aus dieser Gruppe entfernen" oncommand="StudentGruppeDel();" id="student-tree-popup-gruppedel" hidden="false"/>
<menuitem label="EMail senden (intern)" oncommand="StudentSendMail();" id="student-tree-popup-mail" hidden="false"/>
<menuitem label="EMail senden (privat)" oncommand="StudentSendMailPrivat();" id="student-tree-popup-mailprivat" hidden="false"/>
<!--
<menuseparator />
<menuitem label="Personendetails anzeigen" oncommand="StudentShowPersonendetails();" id="student-tree-popup-personendetails" hidden="false"/>
<!--
<menuitem label="Interessenten löschen" oncommand="StudentDeleteInteressent();" id="student-tree-popup-deleteinteressent" hidden="false"/>
-->
</menupopup>
+9
View File
@@ -3966,6 +3966,15 @@ function StudentSendMailPrivat()
}
}
// ****
// * Oeffnet ein Fenster mit den Details der gesamten Person
// ****
function StudentShowPersonendetails()
{
person_id = document.getElementById('student-detail-textbox-person_id').value;
window.open('<?php echo APP_ROOT ?>vilesci/personen/personendetails.php?id='+person_id,'Personendetails','');
}
// ****
// * Erstellt das Diploma Supplement fuer einen oder mehrere Studenten
// ****