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 deployed a number of maintain applications to an AIX platform (WF 5.3.3), and while they work nicely, there is one anomaly that has eluded my debugging.
When I run the apps on AIX, the cursor shows a busy (hourglass) indication everywhere within the page, except over controls, where it changes to the proper cursor type. While the programs function well, the cursor is annoying and misleading
The cursor acts properly when the apps are tested in Developer Studio (5.3.6), and the cursor property is set to 'default' on all the Forms. I've tried to follow the cursor references in the various Maintain Javascript files, without success.
Does anyone have an idea of what I can do to get the cursor to show it's regular pointer indication in these deployed Maintain applications ?
I would guess you are missing a js file somewhere.
Simple test. Get a view source of your maintain app running. Copy and paste into an html file.
In the body tag remove all references to onload other than document.body.style.cursor = 'auto' and run the html file native from the same location. Does your cursor change now?
If so check that the link to ibi_html is correct. You can run a maintain without some of these js files! But if one part of the onload fails, the rest will not run.
(This is in 7.6, I think that 5.x is the sameish)
Alan. WF 7.705/8.007
Posts: 1451 | Location: Portugal | Registered: February 07, 2007
I saw this problem recently when someone was using an Onload function. By this I mean a JavaScript function that is supposed to run everytime the form is refreshed. I use this technique a lot. If you do have this technique and put this code as the last line, or even if you don't, create a javascript and just have: document.body.style.cursor = 'auto'
This way the cursor will always return to the arrow.
Mark
Posts: 663 | Location: New York | Registered: May 08, 2003