source: ether_statistics/web/resources/js/Wijmo.2.2.2/Wijmo-Complete/development-bundle/samples/eventscalendar/customTimeInterval.html @ 604

Last change on this file since 604 was 604, checked in by vmipsl, 12 years ago

images

File size: 3.8 KB
Line 
1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2<html xmlns="http://www.w3.org/1999/xhtml">
3<head runat="server">
4    <title>Events calendar</title>
5    <meta charset="utf-8" />
6    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
7    <meta name="description" content="%description%" />
8    <meta name="keywords" content="" />
9    <meta name="author" content="ComponentOne" />
10    <!-- *include -->
11    <script src="../../external/jquery-1.8.0.min.js" type="text/javascript"></script>
12    <script src="../../external/jquery-ui-1.8.23.custom.min.js" type="text/javascript"></script>
13    <script src="../../external/globalize.min.js" type="text/javascript"></script>
14    <script src="../../external/cultures/globalize.cultures.js" type="text/javascript"></script>
15    <script src="../../external/jquery.mousewheel.min.js" type="text/javascript"></script>
16    <script src="../../external/jquery.wijmo-open.all.2.2.2.min.js" type="text/javascript"></script>
17    <link href="../../themes/wijmo/jquery.wijmo-open.2.2.2.css" rel="stylesheet" type="text/css" />
18    <script src="../../wijmo/jquery.plugin.wijtextselection.js" type="text/javascript"></script>
19    <script src="../../wijmo/jquery.wijmo.wijinputcore.js" type="text/javascript"></script>
20    <script src="../../wijmo/jquery.wijmo.wijinputdate.js" type="text/javascript"></script>
21    <script src="../explore/js/amplify.core.min.js" type="text/javascript"></script>
22    <script src="../explore/js/amplify.request.min.js" type="text/javascript"></script>
23    <script src="../explore/js/amplify.store.min.js" type="text/javascript"></script>
24    <link href="../../themes/aristo/jquery-wijmo.css" rel="stylesheet" type="text/css" />
25    <link href="../../themes/wijmo/jquery.wijmo.wijinput.css" rel="stylesheet" type="text/css" />
26    <script src="../../wijmo/jquery.wijmo.wijdatepager.js" type="text/javascript"></script>
27    <script src="../../wijmo/jquery.wijmo.wijevcal.js" type="text/javascript"></script>
28    <link href="../../themes/wijmo/jquery.wijmo.wijevcal.css" rel="stylesheet" type="text/css" />
29    <link href="../../themes/wijmo/jquery.wijmo.wijdatepager.css" rel="stylesheet" type="text/css" />
30    <!-- * -->
31    <script type="text/javascript">
32        $(document).ready(function () {
33            $("#eventscalendar").wijevcal(
34                                                {
35                                                    timeInterval: 60,
36                                                    timeIntervalHeight: 25,
37                                                    timeRulerInterval: 120
38                                                }
39                                        );
40        });
41    </script>
42    <style type="text/css">
43        #eventscalendar
44        {
45            width: 750px;
46        }
47    </style>
48</head>
49<body class="demo-single">
50    <div class="container">
51        <div class="header">
52            <h2>
53                Day view time interval</h2>
54        </div>
55        <div class="main demo">
56            <!-- Begin demo markup -->
57            <div id="eventscalendar">
58            </div>
59            <!-- End demo markup -->
60            <div class="demo-options">
61                <!-- Begin options markup -->
62                <!-- End options markup -->
63            </div>
64        </div>
65        <div class="footer demo-description">
66            <p>
67                This sample demonstrates how to change the day view time interval.
68            </p>
69            <p>
70                Options used in the sample:</p>
71            <ul>
72                <li><strong>timeInterval</strong> - the time interval in minutes for the Day view.</li>
73                <li><strong>timeIntervalHeight</strong> - the Day view time interval row height in pixels.</li>
74                <li><strong>timeRulerInterval</strong> - the time ruler interval in minutes for the
75                    Day view..</li>
76            </ul>
77            <p>
78            </p>
79        </div>
80    </div>
81</body>
82</html>
Note: See TracBrowser for help on using the repository browser.