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

Revision 6779, 1.9 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        <title></title>
6</head>
7        <script src="../../codebase/dhtmlxscheduler.js" type="text/javascript" charset="utf-8"></script>
8        <link rel="stylesheet" href="../../codebase/dhtmlxscheduler.css" type="text/css" media="screen" title="no title" charset="utf-8">
9
10<style type="text/css" media="screen">
11        html, body{
12                margin:0px;
13                padding:0px;
14                height:100%;
15                overflow:hidden;
16        }       
17</style>
18
19<script type="text/javascript" charset="utf-8">
20        function init() {
21                scheduler.config.multi_day = true;
22                scheduler.config.prevent_cache = true;
23               
24                scheduler.config.xml_date="%Y-%m-%d %H:%i";
25                scheduler.init('scheduler_here',new Date(2010,2,1),"month");
26               
27               
28                scheduler.locale.labels.section_type = "Type";
29                scheduler.config.lightbox.sections = [ 
30                        {name:"description", height:200, map_to:"text", type:"textarea" , focus:true},
31                        {name:"type", height:21, map_to:"type", type:"select",
32                                options:scheduler.serverList("type")}, 
33                        {name:"time", height:72, type:"time", map_to:"auto"}   
34                ];
35                scheduler.load("./php/types.php");
36        }
37</script>
38
39<body onload="init();">
40        <div id="scheduler_here" class="dhx_cal_container" style='width:100%; height:100%;'>
41                <div class="dhx_cal_navline">
42                        <div class="dhx_cal_prev_button">&nbsp;</div>
43                        <div class="dhx_cal_next_button">&nbsp;</div>
44                        <div class="dhx_cal_today_button"></div>
45                        <div class="dhx_cal_date"></div>
46                        <div class="dhx_cal_tab" name="day_tab" style="right:204px;"></div>
47                        <div class="dhx_cal_tab" name="week_tab" style="right:140px;"></div>
48                        <div class="dhx_cal_tab" name="month_tab" style="right:76px;"></div>
49                </div>
50                <div class="dhx_cal_header">
51                </div>
52                <div class="dhx_cal_data">
53                </div>
54        </div>
55</body>
Note: See TracBrowser for help on using the repository browser.