This is a migrated thread and some comments may be shown as answers.

Tooltips and radDocks

1 Answer 56 Views
ToolTip
This is a migrated thread and some comments may be shown as answers.
garfield
Top achievements
Rank 1
garfield asked on 21 Feb 2008, 12:42 PM
I'm calling a tooltipManager from inside a radDock.

While the radDock is docked in a dockzone, there's no problem, but when the radDock is floating it overlaps the tooltip.

I've found similar posts related to radCalendar or radCombobox mentioning zIndex but I can't find zIndex neither on tooltipManager or radDock.

How can I show the tooltip always on top?

1 Answer, 1 is accepted

Sort by
0
Svetlina Anati
Telerik team
answered on 22 Feb 2008, 12:07 PM
Hi Mark,

Yes, you are right, this problem is due to floating RadDock's z-index being bigger than RadToolTip's z-index.
In order to achieve the desired behavior you must apply a CSS style which will override the default one as shown below:

 #RadToolTipWrapper_   
    {  
       z-index:10000000 !important;  
    } 
 
You need to use the keyword "!important" in order not to let the default style to override your custom one.

The ID which is used is the ID of the RadToolTip's wrapper element. If you want to apply the same style to a RadToolTip which is not shown using the RadToolTipManager, the appropriate ID will be:
"RadToolTipWrapper_[YourToolTipClientID]".


All the best,
Svetlina
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
Tags
ToolTip
Asked by
garfield
Top achievements
Rank 1
Answers by
Svetlina Anati
Telerik team
Share this question
or