Created
July 1, 2013 14:45
-
-
Save scottsappen/5901453 to your computer and use it in GitHub Desktop.
Check out http://arshaw.com/fullcalendar for a terrific full calendar implementation.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. Include the code | |
<script src="../Scripts/fullcalendar/fullcalendar.js" type="text/javascript"></script> | |
2. Include a div for your calendar | |
<div id="cal_viewcalendar"></div> | |
3. Setup your calendar | |
$("#cal_viewcalendar").fullCalendar({ | |
theme: true, | |
events: "GetCalendars.aspx", | |
cache: true | |
}); | |
4. Render it! | |
$("#cal_viewcalendar").fullCalendar("render"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment