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

Problem with context menu and tooltip

1 Answer 80 Views
Calendar
This is a migrated thread and some comments may be shown as answers.
ericc34
Top achievements
Rank 1
ericc34 asked on 29 Oct 2008, 11:54 AM
On an appointment in my calendar, I set a tooltip and a context menu. This work well but when i right click on appointment, I have the context menu but also the tooltip and the tooltip appear in front of context menu. Is it possible to disable tooltip on right click ?

1 Answer, 1 is accepted

Sort by
0
Peter
Telerik team
answered on 30 Oct 2008, 09:38 AM
Hello ericc34,

You can try using the hide client-side method of RadTooltip in the OnClientAppointmentContextMenu event handler of RadScheduler.

var radToolTip = $find("<%= RadToolTip1.ClientID %>");  
if (radToolTip.isVisible())  
{  
   radToolTip.hide();  
}  


Greetings,
Peter
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
Tags
Calendar
Asked by
ericc34
Top achievements
Rank 1
Answers by
Peter
Telerik team
Share this question
or