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 have a portal with a number of pages. On one of the pages is a multigraph accordian in which I have the following code to refresh all of the reports once criteria is selected.
function onInitialUpdate(){
refreshReports();
}
function refreshReports(){
var name = this.window.name;
parent.BipIframeInterface.setAllAmpersValues(name,IbComposer_getAllAmpersValues());
parent.BipIframeInterface.refresh(parent.BipIframeInterface.REFRESH_ALL_BUT_SELF, name);
I've noticed that if I run this report and go to another portal page the criteria passes. Is there a way to ensure that parameters are not passed between pages.This message has been edited. Last edited by: wlwright1,
8.1.0.4 Windows 7 Excel, AHTML, HTML,PDF
Posts: 41 | Location: North Carolina | Registered: September 14, 2012
Thank you for this. What I am looking for is a way not to pass parameters between pages. This is causing a problem because if someone doesn't see the set parameters and try to put criteria in that will conflict it generates an error.
I don't know if there is a easy way to make it so the parameters don't pass or have when they select the new page it resets all parameters, either with javascript or something.
8.1.0.4 Windows 7 Excel, AHTML, HTML,PDF
Posts: 41 | Location: North Carolina | Registered: September 14, 2012