Hi,
I have a Kendo Scheduler which has Editable=false applied as it's for viewing only. However, if you double-click on a date, I'd like the site to navigate to a separate page specific to that date to display a summary of what's happening on that date. Therefore, I have bound a double-click event to each cell for this event - however, I don't have access to the date selected to pass to my next page.
$('div.k-event-template').parent().dblclick(function () {
alert("Handler for .dblclick() called.");
});
What's the best way of achieving this?
Thanks, Mark