Hello All, I want to fulfill this functionality: Calendar by month pops up with event names written on the calendar Access a daily event summary by clicking a day in the calendar
Off the top of my head I would say use a jQuery plugin (http://plugins.jquery.com/taxonomy/term/1309) for the calendar and wire up the click event on the day to call a ActionMethod via jQuery getJSON
function. The action method should return a JSONResult instead of a ViewResult.
You can serialse mose objects to json via the jSon(obj) method from the server side, return this result
Ritzie
0 Points
6 Posts
Event Calendar in MVC Application
Dec 01, 2009 09:49 AM|LINK
Hello All, I want to fulfill this functionality: Calendar by month pops up with event names written on the calendar Access a daily event summary by clicking a day in the calendar
Please tell me from where shall I start
Thanks Ritzie
</div>calendar
bloggernext
Contributor
2580 Points
481 Posts
Re: Event Calendar in MVC Application
Dec 01, 2009 10:33 AM|LINK
check these out might be helpful
http://www.bytecyclist.com/2009/01/18/jmonthcalendar-a-jquery-event-calendar/
http://jqueryui.com/demos/datepicker/
http://blogs.teamb.com/craigstuntz/2009/05/12/38297/
AndyB123
Member
62 Points
11 Posts
Re: Event Calendar in MVC Application
Dec 01, 2009 09:32 PM|LINK
I posted something similar to my blog a few weeks back - here it if useful as a starting point.... uses ASP.Net MVC and jquery:
Slapster
Member
115 Points
26 Posts
Re: Event Calendar in MVC Application
Dec 02, 2009 10:23 AM|LINK
Off the top of my head I would say use a jQuery plugin (http://plugins.jquery.com/taxonomy/term/1309) for the calendar and wire up the click event on the day to call a ActionMethod via jQuery getJSON function. The action method should return a JSONResult instead of a ViewResult.
You can serialse mose objects to json via the jSon(obj) method from the server side, return this result