SRW.Set_hyperlink_attrs
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"