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 need to open a link which is on an HTML file into a new window. I have tried doing it using the hyperlink properties like - window = _blank etc.In that case it opens into a new window but says 'Page can not be displayed'.
If i directly copy that link from IE into my HTML file without setting its properties, then it displays all the contents but in the same window.
The whole aim is to display the contents right but, in a seperate window.
If you want to open a new link from a .fex follow the steps below.
1. Create a new fex and name it say myhtm.fex 2. Use
-INCLUDE MYHTM
command in your original program 3. In myhtm.fex, use the window.open() method to open a new link in a separate window (refer to MSDN Page for more explanation)
Sample code for myhtm.fex will be something like this:
-HTMLFORM BEGIN
<HTML>
<script>
my_window = window.open('http://www.yahoo.com', 'newwin',
'resizable=yes, scrollbars=yes, toolbars=yes, location=yes, directories=yes, status=yes, menubar=yes, copyhistory=yes');
</script>
</HTML>
-HTMLFORM END
This message has been edited. Last edited by: ok_dhs,
Prod: WebFOCUS 7.1.3 on Linux Kernel-2.6.5 zSeries 64bit/Apache Tomcat/5.0.28 JAVA version 1.4.2_11 server
Posts: 35 | Location: Oklahoma City | Registered: May 11, 2006
I was just trying to give him an option in case he wanted to make some changes to the code generated by HTML layout painter. Sorry, did not mean to offend you.
Prod: WebFOCUS 7.1.3 on Linux Kernel-2.6.5 zSeries 64bit/Apache Tomcat/5.0.28 JAVA version 1.4.2_11 server
Posts: 35 | Location: Oklahoma City | Registered: May 11, 2006
Well, if you're just using the gui to create your hyperlinks and such, it should be sufficient to enter the http:// address in the dialog window. 'Action' should be URL, in the 'Source' field you can type your http address, 'Target type' is window, and 'Target name' is _blank. As you found, your new window will open with this setting, so that works ok. If the page can't be opened or found, investigate the url shown in the location of the browser to see if it really is the correct one. Otherwise try some other url that will be found, like www.google.com.
GamP
- Using AS 8.2.01 on Windows 10 - IE11.
in Focus since 1988
Posts: 1961 | Location: Netherlands | Registered: September 25, 2007