summaryrefslogtreecommitdiffstats
path: root/weekcalendar_dst.html
blob: f73b4266aab907d78a42359b915aaacd8e8acdbd (plain)
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
  <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
  <title>Demo DST - jQuery Week Calendar</title>

  <link rel='stylesheet' type='text/css' href='libs/css/smoothness/jquery-ui-1.8.11.custom.css' />
  <link rel='stylesheet' type='text/css' href='jquery.weekcalendar.css' />
  <style type="text/css">
  body {
    font-family: "Lucida Grande",Helvetica,Arial,Verdana,sans-serif;
    margin: 0;
  }

  h1 {
    margin: 0;
    padding: 0.5em;
  }

  p.description {
    font-size: 0.8em;
    padding: 0 1em 1em;
    margin: 0;
  }
  </style>

  <script type='text/javascript' src='libs/jquery-1.4.4.min.js'></script>
  <script type='text/javascript' src='libs/jquery-ui-1.8.11.custom.min.js'></script>

  <script type='text/javascript' src='libs/date.js'></script>
  <script type='text/javascript' src='jquery.weekcalendar.js'></script>
  <script type='text/javascript'>

  var eventData = {
    events : [
      {'id':1, 'start': new Date(2010, 9, 30, 12), 'end': new Date(2010, 9, 30, 13, 30),'title':'Lunch with Mike'},
      {'id':2, 'start': new Date(2010, 9, 30, 14), 'end': new Date(2010, 9, 30, 16),'title':'Dev Meeting'},
      {'id':3, 'start': new Date(2010, 9, 30, 18), 'end': new Date(2010, 9, 30, 18, 45),'title':'Hair cut'},
      {'id':4, 'start': new Date(2010, 9, 31, 12), 'end': new Date(2010, 9, 31, 13, 30),'title':'Lunch with Mike'},
      {'id':5, 'start': new Date(2010, 9, 31, 14), 'end': new Date(2010, 9, 31, 16),'title':'Dev Meeting'},
      {'id':6, 'start': new Date(2010, 9, 31, 18), 'end': new Date(2010, 9, 31, 18, 45),'title':'Hair cut'},
      {'id':7, 'start': new Date(2010, 10, 1, 12), 'end': new Date(2010, 10, 1, 13, 30),'title':'Lunch with Mike'},
      {'id':8, 'start': new Date(2010, 10, 1, 14), 'end': new Date(2010, 10, 1, 16),'title':'Dev Meeting'},
      {'id':9, 'start': new Date(2010, 10, 1, 18), 'end': new Date(2010, 10, 1, 18, 45),'title':'Hair cut'},
      {'id':10, 'start': new Date(2010, 2, 27, 12), 'end': new Date(2010, 2, 27, 13, 30),'title':'Lunch with Mike'},
      {'id':11, 'start': new Date(2010, 2, 27, 14), 'end': new Date(2010, 2, 27, 16),'title':'Dev Meeting'},
      {'id':12, 'start': new Date(2010, 2, 27, 18), 'end': new Date(2010, 2, 27, 18, 45),'title':'Hair cut'},
      {'id':13, 'start': new Date(2010, 2, 28, 12), 'end': new Date(2010, 2, 28, 13, 30),'title':'Lunch with Mike'},
      {'id':14, 'start': new Date(2010, 2, 28, 14), 'end': new Date(2010, 2, 28, 16),'title':'Dev Meeting'},
      {'id':15, 'start': new Date(2010, 2, 28, 18), 'end': new Date(2010, 2, 28, 18, 45),'title':'Hair cut'},
      {'id':16, 'start': new Date(2010, 2, 29, 12), 'end': new Date(2010, 2, 29, 13, 30),'title':'Lunch with Mike'},
      {'id':17, 'start': new Date(2010, 2, 29, 14), 'end': new Date(2010, 2, 29, 16),'title':'Dev Meeting'},
      {'id':18, 'start': new Date(2010, 2, 29, 18), 'end': new Date(2010, 2, 29, 18, 45),'title':'Hair cut'}
    ]
  };

  $(document).ready(function() {

    $('#calendar').weekCalendar({
      data:eventData,
      date: new Date(2010, 2, 28),
      timeslotsPerHour: 4,
      height: function($calendar){
        return $(window).height() - $('h1').outerHeight() - $('.description').outerHeight();
      },
      eventRender : function(calEvent, $event) {
        if (calEvent.end.getTime() < new Date().getTime()) {
          $event.css('backgroundColor', '#aaa');
          $event.find('.time').css({'backgroundColor': '#999', 'border':'1px solid #888'});
        }
      }
    });
  });

</script>
</head>
<body>
  <h1>Week Calendar Demo (DST correction)</h1>

  <p class="description">
    This calendar demonstrates correction of Daylight Saving Time.
  </p>

  <div id="calendar"></div>
</body>
</html>