OK... although we aren't planning to make this a "feature," there is a technique you can do to change the way strategy map pop-ups behave.
Open the file stratmap.js and on line 3217 you'll see these two lines of javascript:
WindowObjectReference = window.parent.document.open(fex_url,"Objective_Report",
"toolbar=yes, location=yes, directories=yes, status=yes, menubar=yes, resizable=yes");
change the code to add the phrase ", scrollbars=yes" at the end.
WindowObjectReference = window.parent.document.open(fex_url,"Objective_Report",
"toolbar=yes, location=yes, directories=yes, status=yes, menubar=yes, resizable=yes, scrollbars=yes");
And you'll get what you want. In fact, you can totally clean the pop-up window up to make more room for content like this:
WindowObjectReference = window.parent.document.open(fex_url,"Objective_Report",
"toolbar=no, location=no, directories=no, status=no, menubar=no, resizable=yes, scrollbars=yes");
This is a quick, 2-second change.
Make sure you close all browsers and clear your browser cache before testing this. Browsers tend to cache javascript files.
You can also change the way the multi-drill pop-ups work on WebFOCUS HTML reports; to do that you'd need to alter \ibi\webfocusnn\ibi_html\javaassist\ibi\html\js\ibimultidrill.js. The line to change there is line 102:
window.open(url, target);
Change to
window.open(url, target,'scrollbars=yes');
You can likewise clean up the pop-up window.
Also note that PMF 4.2 has the ability to totally suppress pop-ups. Some people don't like them. It's in PMF Settings (Pop Up Window Handling: SAME or NEW)
Hope this helps!
Bob Jude Ferrante
Director of Business and Development
WebFOCUS Performance Management
Bob_Ferrante@ibi.com
917-339-5105
I'll take any questions about PMF - business or technical - anytime!