Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

scheduler like google calendar in MVC

I am trying to integrate a calendar plugin like google calendar with custom database and code with asp.net MVC in C#.

It needs to handle Day/Week/Month Events in the Calendar as like google calendar.

I found the similar plugin in jquery http://www.webappers.com/2009/08/04/jquery-weekly-calendar-plugin-inspired-by-google-calendar/. But it shows only the Week

Do anyone have a reference to this? Please suggest

like image 946
Prasad Avatar asked Oct 05 '09 13:10

Prasad


2 Answers

I'd try FullCalendar

like image 79
JBland Avatar answered Sep 21 '22 11:09

JBland


I answered a similar question a while ago, "ASP.net weekly schedule control", and the answer there would still be relevant to yourself.

DayPilot is a pretty good general purpose calendaring/schedule control.

The full version is not free, but there is a "lite" version available which is not only free but open source!

The "lite" version will give you both Day and Week (and "Work" week) views of the calendar and will show a Month Scheduler view.

Whilst the original DayPilot component is not meant for ASP.NET MVC, a guy called Craig Stuntz has adapted the DayPilot Lite component for ASP.NET MVC:

Using DayPilot with ASP.NET MVC

like image 38
CraigTP Avatar answered Sep 21 '22 11:09

CraigTP