Is it possible to click on the event on the Calendar (I'm using a fullcalendar plugin) and get redirected or open a Details view page in asp.net MVC related to this eventID using javascript/Jquery, so that the code will give the same URL to all events? Fullcalendar is integrated into asp.net mvc.
I wrote this code, but it didn't work:
eventClick: function(calEvent, jsEvent, view) {
window.location = "<%= Url.Action("Details", "ReservationRequests", new { id =
Model.ID})
Thank you for your help!