Bind DLZ
This commit is contained in:
parent
cea5af51e0
commit
64f672994d
|
@ -3,6 +3,7 @@ December 2013 4.4
|
||||||
- allow to set a custom label for each account type
|
- allow to set a custom label for each account type
|
||||||
- Unix: switch also additional membership if primary group is changed (RFE 108)
|
- Unix: switch also additional membership if primary group is changed (RFE 108)
|
||||||
- LAM Pro:
|
- LAM Pro:
|
||||||
|
-> Bind DLZ support
|
||||||
-> Samba/Shadow: display password change date in self service
|
-> Samba/Shadow: display password change date in self service
|
||||||
-> Custom fields: support custom label and icon
|
-> Custom fields: support custom label and icon
|
||||||
|
|
||||||
|
|
|
@ -446,6 +446,28 @@ function saveScrollPosition(formName) {
|
||||||
}).appendTo(jQuery('#' + 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(
|
jQuery(document).ready(
|
||||||
function() {
|
function() {
|
||||||
jQuery(document).tooltip({
|
jQuery(document).tooltip({
|
||||||
|
|
Loading…
Reference in New Issue