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

Showing a Calendar in ToolTip

3 Answers 64 Views
ToolTip
This is a migrated thread and some comments may be shown as answers.
Stuart Hemming
Top achievements
Rank 2
Stuart Hemming asked on 24 Aug 2010, 11:20 AM
I'd thought that this was a z-index problem, but now I'm not sure.

I have a usercontrol that is loaded in to a tooltip update panel.

The usercontrol contains a combobox and a calendar.

When I clicked on the combobox the dropdown didn't display, but when I moved the cursor out of the tooltip and it closed, I noticed the dropdown list was behind the tooltip. Adding style="8500;" to my combobox mark-up fixed that.

Then I tried clicking on the calendar header to display the fast navigation controls. Again, nothing was visible but allowing the tooltip to close revealed that the fast nav popup was behind the tooltip. However, it doesn't seem to matter what I set the z-index to in the calendar's mark-up, I simply can't get the popup to render above the tooltip.

Can anyone help?

TIA
-- 
Stuart

3 Answers, 1 is accepted

Sort by
0
Stuart Hemming
Top achievements
Rank 2
answered on 26 Aug 2010, 03:07 PM
Anyone?

-- 
Stuart
0
Accepted
Fiko
Telerik team
answered on 27 Aug 2010, 11:06 AM
Hi Stuart,

In this scenario, you need to override the RadCalendarFastNavPopup class of the RadCalendar control in order to change the z-index of the FastNavigation popup:
<style type="text/css">
    .RadCalendarFastNavPopup
    {
        z-index: 10000 !important;
    }
</style>

Please note the !important flag in the overridden class.

All the best,
Fiko
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
0
Stuart Hemming
Top achievements
Rank 2
answered on 27 Aug 2010, 01:50 PM
OK.

Thanks.

-- 
Stuart
Tags
ToolTip
Asked by
Stuart Hemming
Top achievements
Rank 2
Answers by
Stuart Hemming
Top achievements
Rank 2
Fiko
Telerik team
Share this question
or