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.
The only posting I have seen for what I need to do is a mouse over in a subfoot and it was posted in 2004. Is there another way to accomplish this now? I have text in a field that is passed to the report and I'd like the text to display when the mouse is hovering over another field.This message has been edited. Last edited by: Kerry,
Posts: 118 | Location: Wisconsin | Registered: January 16, 2008
-*-- mouseover3.fex - Mouseover example using html title -------------
TABLE FILE CAR
SUM
COMPUTE S1/A7 = '<span'; NOPRINT
COMPUTE S2/A7 = '</span>'; NOPRINT
SALES/D10 AS 'Sales'
BY COUNTRY AS 'Country'
HEADING
"<S1 style='cursor: default;' title='Mouseover Test'>Sales Report By Country <S2"
ON TABLE PCHOLD FORMAT HTML
END
-RUN
Francis
Give me code, or give me retirement. In FOCUS since 1991
Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
There are still problems when I try to style the report. Try running this and you will see that it displays the code rather than doing the mouse over functionality. Do you have any suggestions? I tried DHTML also.
TABLE FILE CAR SUM
COMPUTE S1/A7 = 'COMPUTE S2/A7 = ''; NOPRINT
SALES/D10 AS 'Sales' BY COUNTRY AS 'Country'
-*ON COUNTRY SUBFOOT ON COUNTRY SUBHEAD
"Sales Report By Country ON TABLE PCHOLD FORMAT HTML ON TABLE SET STYLE *
Try putting all code and text for the subhead in a computed field and then use that field in the subhead:
-*-- mouseover3.fex - Mouseover example using html title -------------
TABLE FILE CAR
SUM
COMPUTE SUBHEAD1/A100 = '<span style="cursor: default;" title="Mouseover Test">SALES FOR ' | COUNTRY | '</span>'; NOPRINT
SALES/D10 AS 'Sales'
BY COUNTRY AS 'Country'
ON COUNTRY SUBHEAD
"<SUBHEAD1"
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET STYLE *
TYPE=REPORT, GRID=ON, SIZE=7, $
ENDSTYLE
END
-RUN
Cheers,
Francis
Give me code, or give me retirement. In FOCUS since 1991
Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
TABLE FILE CAR
SUM
COMPUTE S1/A7 = '<span'; NOPRINT
COMPUTE S2/A7 = '</span>'; NOPRINT
SALES/D10 AS 'Sales'
BY COUNTRY AS 'Country'
ON COUNTRY SUBHEAD
"<S1 style='cursor: default;' title='Mouseover Test'>Sales Report By Country <S2"
ON TABLE PCHOLD FORMAT DHTML
ON TABLE SET STYLE *
UNITS=IN, PAGESIZE='Letter', $
TYPE=REPORT, GRID=ON, SIZE = 7,$
ENDSTYLE
END
-RUN
Posts: 118 | Location: Wisconsin | Registered: January 16, 2008