My favorites
▼
|
Sign in
fullcalendar
ISSUE TRACKER HAS MOVED. DO NOT USE THIS (more info)
Project Home
Issues
Export to GitHub
New issue
Search
Search within:
All issues
Open issues
New issues
Issues to verify
for
Advanced search
Search tips
Subscriptions
Issue
1115
attachment: ScheduleTest.htm
(4.0 KB)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>Bug Report</title>
<script type="text/javascript" src="scripts/jquery-1.4.4.min.js"></script>
<script type='text/javascript' src="scripts/jquery-ui-1.8.7.custom.min.js"></script>
<script type='text/javascript' src="scripts/fullcalendar-1.5.2.min.js"></script>
<link rel='stylesheet' type='text/css' media="all" href="styles/jquery-ui.css" />
<link rel='stylesheet' type='text/css' media="screen" href="styles/fullcalendar-1.5.2.css" />
<link rel='stylesheet' type='text/css' media="print" href="styles/fullcalendar.print-1.5.2.css" />
<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,agendaDay, basicWeek,basicDay'
},
contentHeight: 600,
defaultView: 'agendaWeek',
allDaySlot: true,
titleFormat:
{
month: 'MMMM, yyyy', // September, 2009
week: "MMMM d[, yyyy]{ '-'[ MMMM] d, yyyy}", // September 7 - 13, 2009
day: 'dddd, MMMM d, yyyy' // Tuesday, September 8, 2009
},
events: [
{
title: 'Project Pathfinder [12345678]',
start: new Date(y, m, d, 6, 30),
end: new Date(y, m, d, 14, 30),
allDay: false
},
{
title: 'Core D [Glass]',
start: new Date(y, m, d, 11, 50),
end: new Date(y, m, d, 13, 50),
allDay: false
},
{
title: 'Core M [Hidden]',
start: new Date(y, m, d, 13, 50), // new Date(y, m, d, 13, 49) will display
end: new Date(y, m, d, 14, 50),
allDay: false
},
{
title: 'Core E [Edamame]',
start: new Date(y, m, d, 11, 50),
end: new Date(y, m, d, 13, 50),
allDay: false
},
{
title: 'Core F [Faded]',
start: new Date(y, m, d, 11, 50),
end: new Date(y, m, d, 13, 50),
allDay: false
},
{
title: 'Core G [Green]',
start: new Date(y, m, d, 12, 50),
end: new Date(y, m, d, 14, 50),
allDay: false
},
{
title: 'Core H [Hazel]',
start: new Date(y, m, d, 12, 50),
end: new Date(y, m, d, 14, 50),
allDay: false
},
{
title: 'Core J [Jade]',
start: new Date(y, m, d, 12, 50),
end: new Date(y, m, d, 14, 50),
allDay: false
},
{
title: 'Core K [Kelly]',
start: new Date(y, m, d, 12, 50),
end: new Date(y, m, d, 14, 50),
allDay: false
}
]
});
});
</script>
</head>
<body>
<div id="pnlCalendar" runat="server">
<table width="100%" border="0">
<tr>
<td valign="top">
<div id="calendar"></div>
</td>
</tr>
</table>
</div>
</body>
</html>
Powered by
Google Project Hosting