-
2 Apr 2010 7:34 AM #1
Tooltip gets overridden under an applet
Tooltip gets overridden under an applet
Hello
I have a panel help tool tip(using x-template) that gets displayed adjacent to an applet.
This tool tip always gets hidden under the applet.
Is there a way to increase the z-index of the tooltip?
I tried shim option too. But no luck.
(Unfortunately I cant post the code since its confidential)
-
5 Apr 2010 8:01 AM #2
You can try to override tooltip CSS class in your Html/JSP page:
Code:<style type="text/css"> .x-tip { position:absolute;top:0;left:0;visibility:hidden;z-index:82000 !important;border:0 none; } </style>Last edited by Spring; 5 Apr 2010 at 8:01 AM. Reason: Add Code Tags


Reply With Quote