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.
Using HTML Layout Painter (version 7.1.4), I have 4 reports displayed on one web page, which will be viewed with internet explorer version 6.0.2900.2180. The HTML Layout Painter put each report in an seperate iframe. It can take up to 60 seconds for all four reports to get populated. Does anyone know how to get a wait cursor to display in a report square (or iframe)while it is blank and waiting to get populated? A second question is can anyone direct me to a uers manual for HTML Layout Painter? Thanks in advance!
WebFocus Version = 7.1.4 OS.Platform = Windows XP 5.1 Expected OUtput = HTML, Excel and PDF
Thanks to all who offered advice and suggestions. The solution that worked for me was to modify the window_onload() function that the HTML Layout Painter automatically generates. My iframes have the id of report1, report2, report3 and report4. The code below puts a message saying "Processing..." in each iframe and changes the cursor to an hourglass while the data is being generated. As each iframe is populated, the message is replaced and the cursor is automatically changed back to a pointer.
function window_onload() { report1.document.write("
I also modified the submit button OnClick event with the same 8 lines of code before the OnExecute(ctrl) function that the HTLM Layout Painter automatically generates so that the user is notified data is being processed after (s)he has submitted a new request for data.
WebFocus Version = 7.1.4 OS.Platform = Windows XP 5.1 Expected OUtput = HTML, Excel and PDF