As of December 1, 2020, Focal Point is retired and repurposed as a reference repository. We value the wealth of knowledge that's been shared here over the years. You'll continue to have access to this treasure trove of knowledge, for search purposes only.
Join the TIBCO Community TIBCO Community is a collaborative space for users to share knowledge and support one another in making the best use of TIBCO products and services. There are several TIBCO WebFOCUS resources in the community.
From the Home page, select Predict: WebFOCUS to view articles, questions, and trending articles.
Select Products from the top navigation bar, scroll, and then select the TIBCO WebFOCUS product page to view product overview, articles, and discussions.
Request access to the private WebFOCUS User Group (login required) to network with fellow members.
Former myibi community members should have received an email on 8/3/22 to activate their user accounts to join the community. Check your Spam folder for the email. Please get in touch with us at community@tibco.com for further assistance. Reference the community FAQ to learn more about the community.
Be careful! Make a backup! Also, depending on how the webapp was defined in the Web container app (IIS, Tomcat, etc.) you may need to recycle the Web container app for the change to be recognized.
Francis
Give me code, or give me retirement. In FOCUS since 1991
Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
OK, I don't know the correct terminolgy here. The app that's defined to the web container app - is it pointing to the app folder (C:\ibi\WebFOCUS53\webapps\webfocus53), or the web archive file (O:\ibi\WebFOCUS53\webapps\webfocus53.war)?
If it's pointing to the web archive file, the file needs to be recreated, or you can change the web app definition to point to the app folder.
Francis
Give me code, or give me retirement. In FOCUS since 1991
Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
when a user clicks on a report link, they get a full access window, I wish to limit the window the report opens in. actually any report that is executed after a user gets a screen (drill downs, URLs, etc.) i would like to control so that there is never a location/address, toolbar or menubar.
Posts: 18 | Location: Trenton, New Jersey | Registered: November 24, 2003
Function openLink calls function run_it, and it is this function that opens the new window.
At the top of file worp_runtime.js, variable runWindowParams is declared with a blank value. I modified that blank value to 'location=no,menubar=no,toolbar=no,status=no,resizable=yes,scrollbars=no'.
For some reason I cannot understand (the JS is quite convoluted), the value of runWindowParams is blank when it is used in the window.open commands. So I just replaced the 'window features' part of the window.open: wherever there is a window.open, replace the third argument with 'location=no,menubar=no,toolbar=no,status=no,resizable=yes,scrollbars=no'.
For instance, where you see window.open(run_url, something, winParms); replace winParms with the above code. Where you see window.open(run_url, something, this.getRunWindowParams()); replace this.getRunWindowParams() with the above code.
BE CAREFUL! These functions are used to open all kinds of windows, you will have to find the window.open lines that deal with links in views. The one for a URL is in function openNewWindow.
Does it have to be so complicated?
Francis
Give me code, or give me retirement. In FOCUS since 1991
Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
yes... it has to be this hard, otherwise, i would not have had the opportunity to find a knowledgable resource like you. I can't begin to tell you how thankful i am for your assistance.
if you are ever near Trenton, NJ let me know and maybe we can have lunch or something.
Posts: 18 | Location: Trenton, New Jersey | Registered: November 24, 2003
I've used Firebug with Firefox. It is an incredible tool allowing breakpoints, step-through tracing, examining variables and properties, changing them on the fly, and handles JS, CSS, DOM, etc -- my personal favorite.
Be advised if you use Firefox to debug WF javascript, it won't help a lot for IE debugging, as the DOMs are different (got to love Microsoft's "independence" in using W3C standards), so the JS code has different code paths for IE.
But I agree, the code is complex and convoluted. Tracing down problems or trying to apply custom mods are always a challenge for us.
Regards,
-- Dan University of Nebraska at Omaha WF 7.1.6 Linux -- Test: WF 7.6.1 LinuxThis message has been edited. Last edited by: Dan Kenny,