My favorites | Sign in
Project Home Issues
New issue   Search
for
  Advanced search   Search tips   Subscriptions

Issue 1108 attachment: positionbug.html (2.1 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
<!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='../fullcalendar/fullcalendar.css' />
<script type='text/javascript' src='../jquery/jquery-1.5.2.min.js'></script>
<script type='text/javascript' src='../jquery/jquery-ui-1.8.11.custom.min.js'></script>
<script type='text/javascript' src='../fullcalendar/fullcalendar.js'></script>
<script type='text/javascript'>

$(document).ready(function() {
$('#calendar').fullCalendar({
header: {
left: 'prev,next',
center: 'title',
right: 'month,basicWeek,basicDay'
},
defaultView: 'month',
date: 26,
month: 8,
year: 2011,
firstDay: 1,
editable: true,
events: [
{"start":"2011-09-25T21:45:00+00:00","end":"2011-09-26T03:45:00+00:00","allDay":false,"title":"description of It feature be computational of noise. a the its of","id":"466"},
{"start":"2011-09-26T02:15:00+00:00","end":"2011-09-26T07:45:00+00:00","allDay":false,"title":"in after description referred as anatomical be transform.","id":"450"},
{"start":"2011-09-26T08:00:00+00:00","end":"2011-09-26T10:30:00+00:00","allDay":false,"title":"manufac- referred the it domain transform we hereafter","id":"301"},
{"start":"2011-09-26T11:40:00+00:00","end":"2011-09-26T13:40:00+00:00","allDay":false,"title":"Due is boundaries The curves. Hough to generalized the it image.","id":"449"},
{"start":"2011-09-26T18:00:00+00:00","end":"2011-09-26T18:30:00+00:00","allDay":false,"title":"as be advantage feature the retains is","id":"347"}
],
eventRender: function(event, element, view){
if (event.id == '301')
return false;
}
});

});

</script>
<style type='text/css'>

body {
margin-top: 40px;
text-align: center;
font-size: 14px;
font-family: "Lucida Grande",Helvetica,Arial,Verdana,sans-serif;
background: white;
}

#calendar {
width: 900px;
margin: 0 auto;
}

.fc-event-hori .fc-event-title {
font-weight: normal;
white-space: nowrap;
}

</style>
</head>
<body>
<div id='calendar'></div>
</body>
</html>
Powered by Google Project Hosting