SRW.SET_HYPERLINK_ATTRS
built-in procedureThis procedure applies additional HTML commands to the hyperlink specified
in the Property Inspector or SRW.SET HYPERLINK
procedure.
SRW.SET_HYPERLINK_ATTRS('string');
Parameter |
Description |
string |
Is a string containing the HTML commands to be applied. |
SRW.SET_HYPERLINK_ATTRS
should only be set in a format
trigger.
You can also define the string
parameter using the
Reports Builder user interface:
Property Inspector |
Set the Additional Hyperlink Attributes property. |
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;
About the
Reports Builder built-in package (SRW
)
Copyright © 1984, 2005, Oracle. All rights reserved.