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 am trying to chain together two multiple select list boxes with an external fex, but I seem unable to do so, has anyone had any success with this in 7.7.02?
I am pulling up a list box of clients using an external fex. Each client (A, B, C) has an associated list of regions (1, 2, 3). When I single select on a client (A) it properly populated the second list box with the associated regions through that list box's external fex (1, 2) or selecting another client (B) I am able to display the corresponding regions (B, C) If I multi select and choose A & B, the chained list box does not properly populate the regions (1, 2, & 3) and seems to just hang. I have tried just about every trick I know of, any help would be wonderful.
Ensure that these points are taken care 1) Fex used to populate the regions has a filter passed from the client that support multiselect as WHERE FEILD EQ &CLIENT; 2) The variables created under tag for these list boxes support multiselect 3) Ensure u have kept operation="OR" in select tag 4) Try Setting cacheruntimedata=0
WebFOCUS 8.1.05 Windows Excel, PDF, HTML
Posts: 72 | Location: Flowood , MS | Registered: May 11, 2011
-* File lb_country_pop.fex
TABLE FILE PERSINFO
SUM FST.COUNTRY
BY COUNTRY
ON TABLE PCHOLD FORMAT XML
END
And for the chained fex:
-DEFAULT &COUNTRY = '';
TABLE FILE PERSINFO
BY CITY
WHERE COUNTRY EQ '&COUNTRY'
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT XML
ON TABLE SET HTMLCSS ON
END
I can get it to run with the ALL option, and a single selection, but when I try to pull the multiple selections, it goes blank.