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 question about Visual Discovery. I want to build a screen where the user first chooses a selection (i.e. date, region, product) from a dropdown list. If the user submits his selection, a Visual Discovery screen should be built.
When I try to build an example, I succeed to HOLD the right data, but the problem is that the ActiveX components wouldn't reload the newest data. I still see the data from the original selection, but the HOLD file is filled with the newest data from the selection.
Is it technical possible to build such a screen, and if yes, can I see an example of the code? Is there a script which controls the ActiveX components to reload/ refresh?
Change the data source for the charts to be a query string instead of the hold file. When you select submit, then use JavaScript to reset the Data (i think) parm of the activex object. For example:
Please note that this does a couple of more things then just refresh the object. It also changes the graph from a horizonal to vertical bar whenever a specific country is selected. Also, it resubmits based on an onchange event on the dropdown. It should be sufficient for what you are trying to do.
Fex (visdis_cartest.fex):
-* File visdis_cartest.fex
-DEFAULT &COUNTRY = 'FOC_NONE'
TABLE FILE CAR
SUM
DEALER_COST
RETAIL_COST
COMPUTE MARGIN/D12.2 = RETAIL_COST - DEALER_COST;
BY COUNTRY
BY CAR
WHERE COUNTRY CONTAINS '&COUNTRY';
ON TABLE PCHOLD FORMAT VISDIS
ON TABLE SET HTMLCSS ON
END
HTML Layout page (ibisamp/visdis_cartest_show_this.htm):