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.
We are using App Studio HTML Canvas to create launch pages for some ad hoc report building. The hover text, a/k/a ToolTip, is created by typing text in the Title line within properties. We would like to make the ToolTip more visible
• Bolder Text • Larger Text • Shading • Coloring • Borders
There have been numerous discussions in Focal Point about Focal Point about ToolTips in charts and graphs ToolTips in charts and graphs. However I have not found any items about styling the hovering ToolTips in App Studio. We do have a case open with IBI but it always helps to raise the issue among the FOCUS nation.
I am also reasonably confident that somebody will find a thread already in place about HTML Canvas and Hovering Tooltips but that is a separate discussion.
TIA as always,This message has been edited. Last edited by: S.J. Kadish,
You can go through the default IBI stylesheets like ENWARM.sty or ENDEFLT.sty and look over the HTML tooltip Properties.
This is styling the Tooltip for only JS Charts. Are you referring to Hover styling for HTML elements in your page like Edit Box, Listbox and Drop down?
The styling is for the objects in the HTML page. We find that adding the Title entry for the text box above the object works best for visibility. We just want to make the tips more visible for our external users.
Courtesty of Barry Solomon with IBI Tech Support Customizing Titles using JQuery Tooltips
To customize the titles created above, using JQuery and Internal CSS.
1. Click on the canvas to select the “DOCUMENT” object.
2. On the “Properties” panel, click the “lightning bolt” on the toolbar to show the events.
3. For the “load” event, click the column on the right to display the ellipsis button.
4. Click the ellipsis button, to navigate to the “Embedded JavaScript/CSS” view tab (in 8105M or prior) or “Embedded JavaScript” view tab (8201) of the HTML canvas.
5. After the comment lines, add a new line and type this code “$(document).tooltip();”.
6. From the “Embedded JavaScript/CSS” view tab (8105M or prior), go to the “Settings” panel, and select the “Internal CSS” radio button, to activate the internal CSS editor.
7. For 8201, just navigate to the Embedded CSS tab.
8. Enter a new line after the “body” class and type “.ui-tooltip” as the new class name and add the following CSS Styles.
Color: white; Font-size: small; Background: black; Border-radius: 20px; Add any styling that you want. The above is an example.
9. Save and run the HTML Page and mouse over on objects to show the styled tooltips.