Focal Point
[SOLVED] ToolTip for Links

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/9031082161

March 29, 2006, 06:01 AM
Cyril Joy
[SOLVED] ToolTip for Links
Hi,

Is it possible to get tooltip for a drill down. In the example given below, onMouseover the Country I need to get a tooltip.

TABLE FILE CAR
PRINT CAR
BY COUNTRY
ON TABLE SET STYLE *
TYPE=DATA, COLUMN=COUNTRY,JAVASCRIPT=FUNC('DrillDown For Details'), $
ENDSTYLE
END

Thanks for your help.

This message has been edited. Last edited by: Kerry,


Regards,
Cyril Joy.

WF Production 8008 on Linux.
March 29, 2006, 03:09 PM
Mikel
It is possible using ALT parameter. See the example below:

TABLE FILE CAR
  PRINT CAR
  BY COUNTRY
  ON TABLE SET STYLE *
    TYPE=DATA, COLUMN=COUNTRY,JAVASCRIPT=fx(COUNTRY), 
      ALT='tooltips, comments, drilldown details', $
  ENDSTYLE
END

Regards,
Mikel


WebFOCUS 8.1.05, 8.2.01
March 30, 2006, 01:59 AM
<JG>
Unless you are intending to actually use a javascript to control your drilldowns which means
using HTMLFORM then code it using FOCEXEC and not JAVASCRIPT.

TABLE FILE CAR
PRINT CAR
BY COUNTRY
ON TABLE SET STYLE *
TYPE=DATA, COLUMN=COUNTRY,FOCEXEC=CARINST(COUNTRY=COUNTRY),
ALT='Drilldown for details', $
ENDSTYLE
END
October 27, 2008, 10:37 AM
ChannyS
Is there anyway to set the ALT text via the DevStudio GUI in the Report Painter?


Release: WebFOCUS 7.6.8
OS: Windows
Output formats: HTML, PDF, Excel, csv
October 28, 2008, 09:40 AM
Danny-SRL
Not that I know of. At least the painter doesn't balk if you enter the ALT via the Source tab...


Daniel
In Focus since 1982
wf 8.202M/Win10/IIS/SSA - WrapApp Front End for WF

May 22, 2013, 11:13 AM
Doug
Thanks for the refresher: "ALT='The information on FocalPoint is timeless', $".