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've created an FAQ html page that I've included in it's own tab on the dashboard. Within this page, users can select a particular question which brings the user to that specific answer within the document. However, the problem I'm experiencing is that when I click on the hyperlink, the tabs on the dashboard disappear. Is there a way to accomplish this?
Prod - WF 7.6.4 Unix/Solaris - Self-Service, BI Dashboard, MRE Dev - WF 7.6.4 Unix/Solaris - Self-Service, BI Dashboard, MRE Databases: Oracle 10g, SQL Server 2000, DB2.
I would create a framed paged that has 2 frames. Top & bottom. Make the top one small and then place your faq page in the bottom frame. Your links should then replace the frame.
I assume that the hyper-links point to the FAQ details in the same HTML file, using #AAA as the Hyper-link HREF. When you click on one of these, the tabs disappear? Does the frame thar contains the tabs disappear, or do the tabs scroll up somehow?
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, I'm using #aaa as the href and yes, the hyperlinks are in the same HTML file. The frame containing the tabs disappears completely. There's no scrolling. It's the page that contains the FAQ that appears to take over the space normally occupied by the output block and the tabs.
Prod - WF 7.6.4 Unix/Solaris - Self-Service, BI Dashboard, MRE Dev - WF 7.6.4 Unix/Solaris - Self-Service, BI Dashboard, MRE Databases: Oracle 10g, SQL Server 2000, DB2.
That's odd. Perhaps the #aaa hyperlinks have to be coded slightly differently because the page is part of a framed page. Add
TARGET="frameName"
to the hyper-link where frameName is the frame that the FAQ is in. I would add an JS alert in the FAQ HTML to determine the frame name or use "self" which may work as well.
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
Using the basic code below, I added a new output block pointing to the HTML file which I had placed into the public folder within MRE.
Clicking on the links to show a FAQ worked fine for me on 7.6.2.
T
<html>
<head>
<title>FAQs Page</title>
</head>
<body>
<a name=top></a>
<ul>
<li><a href=#faq1>What to use to write HTML files 1</a>
<li><a href=#faq2>What to use to write HTML files 2</a>
<li><a href=#faq3>What to use to write HTML files 3</a>
<li><a href=#faq4>What to use to write HTML files 4</a>
<li><a href=#faq5>What to use to write HTML files 5</a>
</ul>
<div style="position:absolute; top:400; height:400;">
<a name=faq1>1. Use Notepad ++</a> <a href=#top>(back to top)</a>
</div>
<div style="position:absolute; top:800; height:400;">
<a name=faq2>2. Use Notepad</a> <a href=#top>(back to top)</a>
</div>
<div style="position:absolute; top:1200; height:400;">
<a name=faq3>3. Use Wordpad</a> <a href=#top>(back to top)</a>
</div>
<div style="position:absolute; top:1600; height:400;">
<a name=faq4>4. Use Notepad ++</a> <a href=#top>(back to top)</a>
</div>
<div style="position:absolute; top:2000; height:400;">
<a name=faq5>5. Do <b>NOT</b> use MS Word</a> <a href=#top>(back to top)</a>
</div>
</body>
</html>
Edited to make it more readable This message has been edited. Last edited by: Tony A,
In FOCUS since 1986
WebFOCUS Server 8.2.01M, thru 8.2.07 on Windows Svr 2008 R2
WebFOCUS App Studio 8.2.06 standalone on Windows 10
Posts: 5694 | Location: United Kingdom | Registered: April 08, 2004
Tony, that's pretty much the code I've used in mine and while it does link to the appropriate section of the html file, the tabs still disappear. I'm continuing to play with this.
Ken
Prod - WF 7.6.4 Unix/Solaris - Self-Service, BI Dashboard, MRE Dev - WF 7.6.4 Unix/Solaris - Self-Service, BI Dashboard, MRE Databases: Oracle 10g, SQL Server 2000, DB2.
I used _self and it still eliminates the tabs. If I include the explanation in a separate html file and link to that instead of in the same document, the links are retained. However, that would require me to create several html files. Ideally I'd like to have them in one. I even tried adding #faq1, 2, etc in a separate html file and I'm still experiencing troubles.
Ah, on the positive side, I guess it keeps me busy playing with it!
Ken
Prod - WF 7.6.4 Unix/Solaris - Self-Service, BI Dashboard, MRE Dev - WF 7.6.4 Unix/Solaris - Self-Service, BI Dashboard, MRE Databases: Oracle 10g, SQL Server 2000, DB2.
I didn't determine the actual frame name. When I create the page, I identify the frame source and give it a name, such as NAME="sourceframe". Then in any subsequent hyperlink selections, I set the target to be the name of the frame as I've set it up.
Ken
Prod - WF 7.6.4 Unix/Solaris - Self-Service, BI Dashboard, MRE Dev - WF 7.6.4 Unix/Solaris - Self-Service, BI Dashboard, MRE Databases: Oracle 10g, SQL Server 2000, DB2.