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.
I am trying to do a drilldown from a cell on a table that I made in the HTMLFORM section of a fex. The table looks great and I hooked a little code like this on the cell: onmouseup="runDrill()". runDrill just contains this: var myUrl = "http://webfocus/ibi_apps/WFServlet?IBIAPP_app=otc&IBIF_ex=trendgr01"; window.open(myUrl, "mywindow");
After running the report and clicking on the cell I got an error on the HTML report page. I viewed the source and see that the url for the drilldown has been truncated at the ampersand. Consequently I can't open the window and run the drilldown report - not to mention the paramters that need to be passed as well.
Whenever you use an ampersand in the HTML portion of a fex, you need to code it like this &| - this is to prevent Dialogue Manager from assuming it's a DM variable.
Instead of this:
var myUrl = "http://webfocus/ibi_apps/WFServlet?IBIAPP_app=otc&IBIF_ex=trendgr01";
Try this:
var myUrl = "http://webfocus/ibi_apps/WFServlet?IBIAPP_app=otc&|IBIF_ex=trendgr01";
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 I copy it into the browser address bar it executes correctly. But this doesn't happen when I click on the cell to use the window.open() function. I also built the url without the single quote around the variable values. Any more ideas? I'm so close to the solution that I can taste it.