source: ether_statistics/web/resources/js/Wijmo.2.2.2/Wijmo-Open/development-bundle/samples/calendar/preview.html @ 651

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

wijmo

File size: 2.0 KB
Line 
1<!DOCTYPE html>
2<html lang="en">
3<head>
4    <title>Calendar - Month Preview</title>
5    <meta charset="utf-8" />
6    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
7    <meta name="description" content="" />
8    <meta name="keywords" content="" />
9    <meta name="author" content="ComponentOne" />
10    <link href="../../themes/rocket/jquery-wijmo.css" rel="stylesheet" type="text/css" />
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    <link href="../../themes/wijmo/jquery.wijmo.wijcalendar.css" rel="stylesheet" type="text/css" />
14    <script src="../../external/globalize.min.js" type="text/javascript"></script>
15    <script src="../../wijmo/jquery.wijmo.wijpopup.js" type="text/javascript"></script>
16    <script src="../../wijmo/jquery.wijmo.wijcalendar.js" type="text/javascript"></script>
17    <script type="text/javascript">
18        $(function () {
19            $("#calendar1").wijcalendar({ allowPreview: true });
20        });
21       
22    </script>
23</head>
24<body class="demo-single">
25    <div class="container">
26        <div class="header">
27            <h2>
28                Preview Month</h2>
29        </div>
30        <div class="main demo">
31            <!-- Begin demo markup -->
32            <div id="calendar1">
33            </div>
34            <!-- End demo markup -->
35            <div class="demo-options">
36                <!-- Begin options markup -->
37                <!-- End options markup -->
38            </div>
39        </div>
40        <div class="footer demo-description">
41            <p>
42                This sample illustrates the wijcalendar widget's ability to show preview months.
43                To show preview months, set the allowPreview option to true. When the project is
44                loaded, users can preview the next or previous month by hovering over the indicators
45                on either side of the control.
46            </p>
47        </div>
48    </div>
49</body>
50</html>
Note: See TracBrowser for help on using the repository browser.