A SharePoint popup window, is opened using this standard SharePoint javascript function:
If you want to hide the Maximize button of your popup window, then:
From outside the popup window (e.g. in the window.parent), host this function:
Usage:
1. Host this function in the parent page (not in the popup window, as the jQuery cannot see outside of the popup window, to the frame of the popup)
2. In the popup window, when page loads, make a call to this function, in the parent window.
For example:
OpenPopUpPageWithTitle()
If you want to hide the Maximize button of your popup window, then:
From outside the popup window (e.g. in the window.parent), host this function:
HideMaximizeButtonInPopupWindow = function () {
//console not defined in IE8
if (window.console && window.console.debug) {
console.debug('IDS: hiding the Maximize button ...');
}
var maxButtons = $('a[title=\"Maximize\"]');
//if more than 1, then do NOT hide the 1st one (as it is a parent popup)
if(maxButtons.length > 1) {
maxButtons.eq(1).hide();
} else {
maxButtons.hide();
}
};
Usage:
1. Host this function in the parent page (not in the popup window, as the jQuery cannot see outside of the popup window, to the frame of the popup)
2. In the popup window, when page loads, make a call to this function, in the parent window.
For example:
$(function() {
//assuming that this page is a popup, and we want to hide the Maximize button on the frame of this window:
if(window.parent.HideMaximizeButtonInPopupWindow) {
window.parent.HideMaximizeButtonInPopupWindow();
}
});
Comments
Post a Comment