|
From: Martijn B. <m.b...@po...> - 2004-02-26 16:28:35
|
Hi all,
Internet explorer seems to ignore <BASE> from javascript code. It uses the
URI from the current document instead. This results in non working links in
the management interface. Another problem is that <A onclick='viewuser(<%= i
%>)'> does not show the hand cursor. I have 'fixed' this by editing
listendentityhtml.jsp. For all javascript view functions I added the line
link = "<%= ejbcawebbean.getBaseUrl() %>" + link;
This fixes the <BASE> problem.
The cursor problem can be fixed by adding a style to the anchor:
<A style="cursor:hand;" onclick='viewuser(<%= i %>)'>
I am sure there are better ways to handle these problems. For IE it seems to
work but I did not test it for other browsers.
Thanks
Martijn Brinkers
|