A script-enabled browser is required for this page to function properly.

SRW.SET_HYPERLINK_ATTRS built-in procedure

This procedure applies additional HTML commands to the hyperlink specified in the Property Inspector or SRW.SET HYPERLINK procedure.

Syntax

SRW.SET_HYPERLINK_ATTRS('string');

Parameter

Description

string

Is a string containing the HTML commands to be applied.

Restrictions

SRW.SET_HYPERLINK_ATTRS should only be set in a format trigger.

GUI access

You can also define the string parameter using the Reports Builder user interface:

Property Inspector

Set the Additional Hyperlink Attributes property.

Example

The format trigger below generates a status of information at the bottom of your Web browser when the mouse cursor passes over a Shopping Basket object.

function BASKETFormatTrigger return boolean is
begin
  SRW.SET_HYPERLINK_ATTRS('onMouseover "window.status="Click here 
     to see what is in your shopping basket";
  return true"'||'onMouseout ="window.status=" ";
  return true"');
  return (TRUE);
end;

See also

About the Reports Builder built-in package (SRW)

SRW built-in package