Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

webfocus html TITLE

Status
Not open for further replies.

breyt

IS-IT--Management
Dec 9, 2002
66
FR
Hi
How I can use option TITLE (add comment when the mouse is over a word) in webfocus
thanks
breyt
 
You can do this by providing an as-clause in the table request. If you code an alt-tag in HTML-code within the title you will get a response when the mouse goes over it. Frank van de Kant
 
Thanks for the answer
do you have an exemple
Breyt
 
I have tried and I don't have any comment
I don't have the option to click with the mouse
Breyt
 
If you want to have the title clickable, then you need to define the onClick-action. You do this by using a Focus Stylesheet.
Example:
Code:
TABLE FILE filename
  PRINT FIELD1
  ON TABLE SET PAGE-NUM OFF
  ON TABLE SET STYLE *
    TYPE=REPORT, STYLE=NORMAL, SQUEEZE=ON, GRID=ON, $
    TYPE=TITLE, STYLE=BOLD, JUSTIFY=LEFT, COLUMN=FIELD1, 
    FOCEXEC=NEXTFEX(PARAM='PARAMVALUE'), $
  ENDSTYLE
ON TABLE HOLD FORMAT HTMTABLE
END
Or you can organize it by using cascading stylesheets.
Frank van de Kant
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top