|
|
@@ -0,0 +1,59 @@
|
|
|
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
|
+<html>
|
|
|
+<head>
|
|
|
+<link rel='stylesheet' type='text/css' href='../demos/redmond/theme.css' />
|
|
|
+<script type='text/javascript' src='../src/_loader.js?debug'></script>
|
|
|
+<script type='text/javascript' src='../src/gcal/_loader.js'></script>
|
|
|
+<script type='text/javascript'>
|
|
|
+
|
|
|
+ /*
|
|
|
+ - click on day button
|
|
|
+ - click refetchEvents
|
|
|
+ - click on month button
|
|
|
+ event shouldn't disappear!!!
|
|
|
+ */
|
|
|
+
|
|
|
+ $(document).ready(function() {
|
|
|
+
|
|
|
+ var date = new Date();
|
|
|
+ var d = date.getDate();
|
|
|
+ var m = date.getMonth();
|
|
|
+ var y = date.getFullYear();
|
|
|
+
|
|
|
+ $('#calendar').fullCalendar({
|
|
|
+ year: 2010,
|
|
|
+ month: 9,
|
|
|
+ date: 31,
|
|
|
+ header: {
|
|
|
+ left: 'prev,next today',
|
|
|
+ center: 'title',
|
|
|
+ right: 'month,agendaDay'
|
|
|
+ },
|
|
|
+ editable: true,
|
|
|
+ events: $.fullCalendar.gcalFeed('http://www.google.com/calendar/feeds/usa__en%40holiday.calendar.google.com/public/basic')
|
|
|
+ });
|
|
|
+
|
|
|
+ });
|
|
|
+
|
|
|
+</script>
|
|
|
+<style type='text/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;
|
|
|
+ }
|
|
|
+
|
|
|
+</style>
|
|
|
+</head>
|
|
|
+<body>
|
|
|
+<button onclick="$('#calendar').fullCalendar('refetchEvents')">refetchEvents</button>
|
|
|
+<div id='calendar'></div>
|
|
|
+</body>
|
|
|
+</html>
|