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.
First off, I am sorry you have to work in the 8.0.07 release. Secondly, I am not sure what you could do to accomplish that within that release. I had that same issue/desire and found I wouldn't be able to do that until they added to their product interface API in 8.1.05. Luckily, we are on that now. They've added a new Js function to their iframeinterface.js scripts found at \\serverName\ibi\WebFOCUS81\webapps\webfocus\tools\portalcanvas called navigateToPage() that allows the dev to pass in the page to navigate to (could be the same page you are already on), and which panels (can be more than one, or just one) to refresh with any params you'd like to pass as well.
new Js function to their iframeinterface.js scripts found at \\serverName\ibi\WebFOCUS81\webapps\webfocus\tools\portalcanvas called navigateToPage()
I followed these instructions - I got it to work BUT...... it seems to only hop to the page once and change the parameter. Subsequent drill downs don't change my parameter. Only the "first" one does.
Anyone else have this issue with navigateToPage()?
-* File: IBFS:/dev81/WFC/Repository/Testing/navigateBIP/Report1.fex Created by WebFOCUS AppStudio
-DEFAULTH &COUNTRY = _FOC_NULL;
TABLE FILE CAR
BY CAR.ORIGIN.COUNTRY
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE SET ASNAMES ON
ON TABLE SET JSURLS '/ibi_apps/tools/portalcanvas/iframeinterface.js'
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET HTMLEMBEDIMG ON
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
INCLUDE = IBFS:/EDA/EDASERVE/_EDAHOME/ETC/endeflt.sty,
$
-* This works if we just want to refresh all (tabs of BIP I assume) - but it doesn't JUMP to the page
-*TYPE=REPORT,
-* DRILLMENUITEM='PassCountryToBI_Tab',
-* JAVASCRIPT=drillRefresh( \
-* 'AMPERS_PORTAL' \
-* 'COUNTRY' \
-* N1 \
-* ),
-* TARGET='_self',
-*$
-*page5 is my "PickHopHere" page - this does the hopping
-*hopToMe2 is the Panel I want ot refresh. Sounds like we can have a single BIP page with multipe panels with the data that consumes these variables.
-*COUNTRY is the variable I'm passing...and the receiving end should recive it.
TYPE=REPORT,
DRILLMENUITEM='Hope To Tab',
JAVASCRIPT=navigateToPage( \
'page5' \
'hopToMe2' \
'COUNTRY' \
N1 \
),
TARGET='_self',
$
ENDSTYLE
END
webFOCUS 8207.15 WindowsServer 2019
Posts: 120 | Location: Minnesota | Registered: August 26, 2013
FYI: I did get this to work - but I had to toggle the BIP page "Refresh on Click" - but I'm not certain I should have done that - it feels like overkill - and if we had a complicated page with many *.fex - I'm not sure I'd want it to refresh all the time.
Anyone got an alternative way to make the navigateToPage function honor the passed in parameter each time?
webFOCUS 8207.15 WindowsServer 2019
Posts: 120 | Location: Minnesota | Registered: August 26, 2013