source: sandbox/2.3-MailArchiver/calendar/js/dhtmlx/samples/01_initialization_loading/10_ipad.html @ 6779

Revision 6779, 2.2 KB checked in by rafaelraymundo, 12 years ago (diff)

Ticket #2946 - Liberado Expresso(branch 2.3) integrado ao MailArchiver?.

Line 
1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3<head>
4        <meta http-equiv="Content-type" content="text/html; charset=utf-8">
5        <meta name="viewport" content="width=device-width,minimum-scale=1.0,maximum-scale=1.0">
6        <title></title>
7
8        <script src="../../codebase/dhtmlxscheduler.js" type="text/javascript" charset="utf-8"></script>
9        <script src="../../codebase/ext/dhtmlxscheduler_minical.js" type="text/javascript" charset="utf-8"></script>
10        <link rel="stylesheet" href="../../codebase/dhtmlxscheduler.css" type="text/css" media="screen" title="no title" charset="utf-8">
11        <link rel="stylesheet" href="../../codebase/ext/dhtmlxscheduler_ext.css" type="text/css" media="screen" title="no title" charset="utf-8">
12       
13        <script src="../../codebase/ext/dhtmlxscheduler_touch.js" type="text/javascript" charset="utf-8"></script>
14        <link rel="stylesheet" href="../../codebase/ext/dhtmlxscheduler_touch.css" type="text/css" media="screen" title="no title" charset="utf-8">
15
16       
17<style type="text/css" media="screen">
18        html, body{
19                margin:0px;
20                padding:0px;
21                height:100%;
22                overflow:hidden;
23        }       
24</style>
25<script type="text/javascript" charset="utf-8">
26        function init() {
27                scheduler.config.multi_day = true;
28                scheduler.config.details_on_create = true;
29                scheduler.config.details_on_dblclick = true;
30                scheduler.config.time_step = 30;
31               
32                scheduler.config.xml_date="%Y-%m-%d %H:%i";
33                scheduler.init('scheduler_here',new Date(),"month");
34                scheduler.load("../common/events2010.xml");
35        }
36</script>
37</head>
38<body onload="init();">
39        <div id="scheduler_here" class="dhx_cal_container" style='width:100%; height:100%;'>
40                <div class="dhx_cal_navline">
41                        <div class="dhx_cal_prev_button">&nbsp;</div>
42                        <div class="dhx_cal_next_button">&nbsp;</div>
43                        <div class="dhx_cal_today_button"></div>
44                        <div class="dhx_cal_date"></div>
45                        <div class="dhx_cal_tab" name="day_tab" style="right:204px;"></div>
46                        <div class="dhx_cal_tab" name="week_tab" style="right:140px;"></div>
47                        <div class="dhx_cal_tab" name="month_tab" style="right:76px;"></div>
48                </div>
49                <div class="dhx_cal_header">
50                </div>
51                <div class="dhx_cal_data">
52                </div>
53        </div>
54</body>
Note: See TracBrowser for help on using the repository browser.