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.
[SOLVED]In my portal all the portal reports are presently updated using the on click coding in the Embedded JavaScript/CSS in the HTML page which is located in the banner of the portal page. Can the JS code be changed to make all the reports update on a selection change? The existing coding is below. I have tried several things but I cannot get this to work. Is it even possible?
//Begin function window_onload function window_onload() { UpdateData();
// TODO: Add your event handler code here //add onInitialUpdate() function to make changes before initial run of the reports } //End function window_onload function onInitialUpdate(){ //refreshReports(); } //Begin function form1Submit_onclick function form1Submit_onclick(ctrl) { refreshReports(); } //End function form1Submit_onclick function refreshReports(){ // this is the name of the iframe var name = this.window.name; // call to set the ampers for the current page – use Len’s function instead of the hard-coded string // you only need to set once per page, per run/edit session, unless they change parent.BipIframeInterface.setAllAmpersValues(name, IbComposer_getAllAmpersValues()); // call to refresh all but self // the available values for the first parameter are in portalcanvas/util.js – see below // the third parameter, not passed here, is an array of frame names parent.BipIframeInterface.refresh(parent.BipIframeInterface.REFRESH_ALL_BUT_SELF, name); }This message has been edited. Last edited by: gerndude,
WebFOCUS 8203 Gen 43 App Studio 8203 Gen 04232018 Hyperstage 8203M Gen 1320 MS Sequel Server 2014 Windows 10 Excel/AHTML/PDF/HTML Chrome, IE11
Posts: 48 | Location: Carmel IN | Registered: September 26, 2008
Thanks Martin. But I cannot get your suggestion to work. I am attaching a link below to a video that shows you how this works today with the onclick, just to make sure you know what I am doing. Currently, in the HTML page I do not have a "Task and Animation" process that makes this work. The embedded JS triggers the form1Submit action. Have you actually tried your suggestion and if so could you share the code and any screenshots?
(CLOSE) I did not get your suggestion to work, but another person helped me. I added a new task: Trigger Type = Selection Changed, Trigger Identifier = unique identifier(s) of your controls, Requests/Action = Refresh1, Target Type = Refresh BI Portal, All pages of Portal.
WebFOCUS 8203 Gen 43 App Studio 8203 Gen 04232018 Hyperstage 8203M Gen 1320 MS Sequel Server 2014 Windows 10 Excel/AHTML/PDF/HTML Chrome, IE11
Posts: 48 | Location: Carmel IN | Registered: September 26, 2008