This commit is contained in:
Roland Gruber 2013-10-27 16:10:49 +00:00
parent cea5af51e0
commit 64f672994d
2 changed files with 23 additions and 0 deletions

View File

@ -3,6 +3,7 @@ December 2013 4.4
- allow to set a custom label for each account type
- Unix: switch also additional membership if primary group is changed (RFE 108)
- LAM Pro:
-> Bind DLZ support
-> Samba/Shadow: display password change date in self service
-> Custom fields: support custom label and icon

View File

@ -446,6 +446,28 @@ function saveScrollPosition(formName) {
}).appendTo(jQuery('#' + formName));
}
/**
* Shows the dialog to create a DNS zone.
*
* @param title dialog title
* @param okText text for Ok button
* @param cancelText text for Cancel button
*/
function bindShowNewZoneDialog(title, okText, cancelText) {
var buttonList = {};
buttonList[okText] = function() { document.forms["newBindZoneDialogForm"].submit(); };
buttonList[cancelText] = function() { jQuery(this).dialog("close"); };
jQuery('#newBindZoneDialog').dialog({
modal: true,
title: title,
dialogClass: 'defaultBackground',
buttons: buttonList,
width: 'auto'
});
}
jQuery(document).ready(
function() {
jQuery(document).tooltip({