profile delete and automount map dialog

This commit is contained in:
Roland Gruber 2011-04-25 17:59:57 +00:00
parent f1c124851e
commit c9f8b3d6cd
1 changed files with 49 additions and 0 deletions

View File

@ -165,3 +165,52 @@ function configLoginMethodChanged() {
}
}
/**
* Shows the dialog to delete a profile.
*
* @param title dialog title
* @param okText text for Ok button
* @param cancelText text for Cancel button
* @param scope account type (e.g. user)
* @param selectFieldName name of select box with profile name
*/
function profileShowDeleteDialog(title, okText, cancelText, scope, selectFieldName) {
// get profile name
var profileName = jQuery('[name=' + selectFieldName + ']').val();
// update text
jQuery('#deleteText').text(profileName);
// update hidden input fields
jQuery('#profileDeleteType').val(scope);
jQuery('#profileDeleteName').val(profileName);
var buttonList = {};
buttonList[cancelText] = function() { jQuery(this).dialog("close"); };
buttonList[okText] = function() { document.forms["deleteProfileForm"].submit(); };
jQuery('#deleteProfileDialog').dialog({
modal: true,
title: title,
dialogClass: 'defaultBackground',
buttons: buttonList,
width: 'auto'
});
}
/**
* Shows the dialog to create an automount map.
*
* @param title dialog title
* @param okText text for Ok button
* @param cancelText text for Cancel button
*/
function automountShowNewMapDialog(title, okText, cancelText) {
var buttonList = {};
buttonList[cancelText] = function() { jQuery(this).dialog("close"); };
buttonList[okText] = function() { document.forms["newAutomountMapDialogForm"].submit(); };
jQuery('#newAutomountMapDialog').dialog({
modal: true,
title: title,
dialogClass: 'defaultBackground',
buttons: buttonList,
width: 'auto'
});
}