mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:04:53 +01:00
Enhance auto-popup to only show visible buttons
This commit is contained in:
parent
08ecadcc99
commit
1aee6f3bed
@ -374,7 +374,8 @@ function nm_open_popup(_action, _ids)
|
||||
var dialog_parent = dialog.parent();
|
||||
var d_buttons = [];
|
||||
var action = _action;
|
||||
jQuery('button',popup).each(function(index) {
|
||||
popup.show();
|
||||
var buttons = jQuery('button:visible',popup).each(function(index) {
|
||||
var but = jQuery(this);
|
||||
but.hide();
|
||||
if(but.attr("id"))
|
||||
@ -395,6 +396,7 @@ function nm_open_popup(_action, _ids)
|
||||
}
|
||||
});
|
||||
});
|
||||
popup.hide();
|
||||
dialog.dialog({
|
||||
title: jQuery('.promptheader',popup).text(),
|
||||
modal: true,
|
||||
@ -406,6 +408,7 @@ function nm_open_popup(_action, _ids)
|
||||
|
||||
// Put it back where it came from, or et2 will error when clear() is called
|
||||
dialog.appendTo(dialog_parent);
|
||||
buttons.show();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user