<
span
id
=
"spnPers"
class
=
"mouse-pointer learn-more"
>learn more</
span
>
<
rad:RadToolTip
ID
=
"RadToolTip1"
runat
=
"server"
TargetControlID
=
"spnPers"
IsClientID
=
"true"
Sticky
=
"false"
AutoCloseDelay
=
"10000"
Animation
=
"none"
Position
=
"TopLeft"
RelativeTo
=
"Element"
OffsetY
=
"2"
Height
=
"100px"
Width
=
"300px"
Skin
=
"Default"
Title
=
"Personalize"
CssClass
=
"ontop"
>
<
p
>
Jazz up your folder presentation by personalizing your folders with a stock graphic and/or text. Choose from 4 different foil colors, 28 stock graphics and 11 font styles that are sure to add impact.
</
p
>
<
br
/>
<
p
>
Additional $50 setup and $0.50 per folder foil fees apply. Personalized folders require a minimum purchase of 100 and then increments of 25.
</
p
>
<
br
/>
<
p
>
Check on the Personalize box and click on the "Personalize and Add to Cart" button
to get started building your personalized folders.
</
p
>
</
rad:RadToolTip
>
.ontop
{
z-index
:
10000
;
}
8 Answers, 1 is accepted
You can set the value of the z-index property of every Telerik control by using the common style property, e.g.
<
rad:RadToolTip
ID
=
"RadToolTip1"
runat
=
"server"
style="z-index: 10000" ...You can find more information in the following article: Controlling absolute positioning with z-index.
Kind regards,
Rumen
the Telerik team

If it's of any significance, we're using version 5/15/2008

Using your onTop css class. Try changing it to this:
.ontop
{
z-index
:
10000
!important
;
}
This will enforce the z-index of the RadToolTip, even if it's set inline.
I hope that helps.



I don't understand why it would show inline. Have your tried setting RenderInPageRoot="true" on the ToolTip? I don't know if that will solve anything, but it may.

Another interesting note is that the tooltip works fine over the header in Firefox, but is appearing under the tabstrip...which I hadn't tested before. I thought this was just an IE issue, but it appears not.
I welcome any other suggestions...I really need to try and get this resolved today so I can push this live Monday.
I am afraid that I should examine the reproduction of the problem to be able to help. The possible reasons I could think of are the following ones:
1) A z-index which is less than the one of the other element
2) A parent or adjacent controls with specific position set
This being said the only things I can suggest without examining the setup are:
1) Make sure you have set the z-index by using the style attribute as my colleague suggested. You can also add the keyword !important to provide a higher priority to your setting in case it gets overridden for some reason - your setting should look like this:
<rad:RadToolTip
ID
=
"RadToolTip1"
runat
=
"server"
style="z-index: 10000 !important" ...
2) Make sure that you have set RenderInPageRoot="true"
If this does not help, please send me a live url along with detailed explanations or best - a fully runnable reproduction page and I will do my best to help.
Svetlina
the Telerik team