Skip to Main Content

DevOps, CI/CD and Automation

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

SRW.Set_hyperlink_attrs

482169Oct 22 2007
I am trying to use the "onMouseover window.status..." in SRW.Set_hyperlink_attrs to show a message in the browser's status bar as shown in the Reports online help.

It doesn't seem to work for me, but what I did notice on the online help
is the code for same functionality written differently in two different places.
If you do a search for "onMouseover", online help will bring up two results, which I
have copied below.
I would greatly apprecite if someone could show me how to get it to work.

I copied the following codes from Reports online help, and notice the
double-quote prior to "Click here.... " in the first one, versus just
a single quote prior to "Click here...." in the second one.

Code in Set_Hyperlink_Attrs property:

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;

Code in Additional Hyperlink Attrs property:

onMouseover "window.status='Click here to see what is in your shopping basket';
return true" onMouseout ="window.status=' ';return true"
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Nov 19 2007
Added on Oct 22 2007
0 comments
437 views