2010-09-19 07:54:35 +02:00
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
2009-11-29 09:12:36 +01:00
|
|
|
<html>
|
|
|
|
<head>
|
2010-09-19 07:54:35 +02:00
|
|
|
<script type='text/javascript' src='../src/_loader.js?debug'></script>
|
2009-11-29 09:12:36 +01:00
|
|
|
<script type='text/javascript'>
|
|
|
|
|
|
|
|
$(document).ready(function() {
|
|
|
|
|
|
|
|
var date = new Date();
|
|
|
|
var d = date.getDate();
|
|
|
|
var m = date.getMonth();
|
|
|
|
var y = date.getFullYear();
|
|
|
|
|
|
|
|
$('#calendar').fullCalendar({
|
|
|
|
header: {
|
|
|
|
left: 'prev,next today',
|
|
|
|
center: 'title',
|
|
|
|
right: 'month,agendaWeek,basicWeek,agendaDay,basicDay'
|
|
|
|
},
|
|
|
|
editable: true,
|
|
|
|
events: [
|
|
|
|
{
|
|
|
|
title: 'All Day Event',
|
|
|
|
start: new Date(y, m, 1)
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'Long Event',
|
|
|
|
start: new Date(y, m, d-5),
|
|
|
|
end: new Date(y, m, d-2)
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 999,
|
|
|
|
title: 'Repeating Event',
|
|
|
|
start: new Date(y, m, d-3, 16, 0),
|
|
|
|
allDay: false
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 999,
|
|
|
|
title: 'Repeating Event',
|
|
|
|
start: new Date(y, m, d+4, 16, 0),
|
|
|
|
allDay: false
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'Meeting',
|
|
|
|
start: new Date(y, m, d, 10, 30),
|
|
|
|
allDay: false
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'Lunch',
|
|
|
|
start: new Date(y, m, d, 12, 5),
|
|
|
|
end: new Date(y, m, d, 14, 43),
|
|
|
|
allDay: false
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'Birthday Party',
|
|
|
|
start: new Date(y, m, d+1, 19, 0),
|
|
|
|
end: new Date(y, m, d+1, 22, 30),
|
|
|
|
allDay: false
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'Click for Google',
|
|
|
|
start: new Date(y, m, 28),
|
|
|
|
end: new Date(y, m, 29),
|
|
|
|
url: 'http://google.com/'
|
|
|
|
}
|
|
|
|
],
|
|
|
|
weekMode: 'liquid',
|
|
|
|
height: calcCalendarHeight()
|
|
|
|
});
|
|
|
|
|
|
|
|
function calcCalendarHeight() {
|
|
|
|
var h = $(window).height() - 40;
|
|
|
|
console.log(h);
|
|
|
|
return h;
|
|
|
|
}
|
|
|
|
|
|
|
|
$(window).resize(function() {
|
|
|
|
$('#calendar').fullCalendar('option', 'height', calcCalendarHeight());
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
</script>
|
|
|
|
<style type='text/css'>
|
|
|
|
|
|
|
|
body {
|
|
|
|
margin: 20px 200px 20px 20px;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 13px;
|
|
|
|
font-family: "Lucida Grande",Helvetica,Arial,Verdana,sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
#calendar {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id='calendar'></div>
|
|
|
|
</body>
|
|
|
|
</html>
|