mouseover on the event

blog.scheduler-net.com/post/2012 … razor.aspx
I use mvc3 with razor and In this tutorial, how can make the change such that a popup appears while mouseover on the event.
The popup that is appearing should have carimage and car details.(I want the popup , not the tooltip)

Hi,
you may use client-side ‘onMouseMove’ event
js:scheduler.attachEvent("onMouseMove", function(id, browser_event){ if(id){//mouse over scheduler event //show popup } });However, i think tooltip would also work. It allows specifying complex html content and you wouldn’t need to show/hide it manually .

so I don prefer tooltip for this.I need to add some link into the popup so that i can navigate to the page connected to the link.
Thankyou :slight_smile: