FullCalendar 2 JSON Feed Debugging Template
HTML
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/moment.js/2.6.0/moment.js"></script>
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/fullcalendar/2.0.0/fullcalendar.css">
<script src="http://cdnjs.cloudflare.com/ajax/libs/fullcalendar/2.0.0/fullcalendar.js"></script>
<div id='calendar'></div>
CSS
body {
margin-top: 40px;
text-align: center;
font-size: 13px;
font-family:"Lucida Grande", Helvetica, Arial, Verdana, sans-serif;
}
#calendar {
width: 900px;
margin: 0 auto;
}
JavaScript
$('#calendar').fullCalendar({
header: {
left: 'prev,next today',
center: 'title',
right: 'month,agendaWeek,agendaDay'
},
editable: true,
weekends: false,
slotDuration: '00:30:00',
weekends: false,
defaultView: 'agendaWeek',
draggable: true,
events: [{
"title": "Richard Chambula",
"color": "#669533",
"start": "2014-09-08 11:30:00",
"end": "0000-00-00 00:00:00",
"url": null,
"allDay": false
}, {
"title": "Richard Chambula",
"color": "#669533",
"start": "2014-09-07 09:00:00",
"end": "2014-09-07 09:30:00",
"url": null,
"allDay": false
}, {
"title": "Richard Chambula",
"color": "#669533",
"start": "2014-09-07 13:30:00",
"end": "2014-09-07 14:00:00",
"url": null,
"allDay": false
}, {
"title": "Hosea Kutako",
"color": "#669533",
"start": "2014-09-08 09:30:00",
"end": "2014-09-08 10:00:00",
"url": null,
"allDay": false
}, {
"title": "Hosea Kutako",
"color": "#669533",
"start": "2014-09-09 07:00:00",
"end": "2014-09-09 07:30:00",
"url": null,
"allDay": false
}, {
"title": "Nathanael Maxilili",
"color": "#669533",
"start": "2014-09-08 08:00:00",
"end": "2014-09-08 08:30:00",
"url": null,
"allDay": false
}, {
"title": "Some Name",
"color": "#669533",
"start": "2014-09-08 09:30:00",
"end": "2014-09-08 10:00:00",
"url": null,
"allDay": false
}, {
"title": "Kakes Kakololo",
"color": "#669533",
"start": "2014-09-07 08:00:00",
"end": "2014-09-07 08:30:00",
"url": null,
"allDay": false
}, {
"title": "James Blunt",
"color": "#669533",
"start": "2014-09-07 10:00:00",
"end":...