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.
In an HTML-screen a listbox is filled with some values. One of these values is ‘H&K’. If I select this value and run the fex, the ‘H&K’ value is passed from the HTML-screen to the fex as a parameter value. The fex does not give any results because the HTML can’t deal with the ampersand (&) in the parameter value. If I look at the source code of the output of the fex, it shows that parameter value ‘H&K’ is perceived as parameter value ‘H’. How can I solve this issue?
(I encounter the same problem for value ‘X+S’. The source code shows that the parameter value that is being used in the fex is ‘X S’.)This message has been edited. Last edited by: Kerry,
7.7.03 OS is Windows 7 We create al sorts of outputs depending on the demand, HTML (most cases), Excel (some cases) and PDF (some cases)
Posts: 32 | Location: Utrecht, Holland | Registered: December 10, 2008
you have to parse the string that you have selected in the drop down list and replace the "&" char with "&" and then send it to the fex file. You may have other issue with other charcters: have a look to the following list.
Regards.
if ( chara == '<'){ result.append("<"); } else if ( chara == '>'){ result.append(">"); } else if ( chara == '\"'){ result.append("""); } else if ( chara == '\\'){ result.append("\"); } else if ( chara == '&'){ result.append("&"); } else if ( chara == '\''){ result.append("'"); } else { result.append(chara); }
WebFocus 7.6.5 AND WebLogic server as web server sql2005 as database server
Posts: 273 | Location: Europe | Registered: May 31, 2007