source: branches/2.2.0.1/calendar/js/dhtmlx/samples/03_extensions/01_recurring_events.html @ 4001

Revision 4001, 1.9 KB checked in by rafaelraymundo, 13 years ago (diff)

Ticket #1615 - Componente novo para agenda......................................

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        <script src="../../codebase/ext/dhtmlxscheduler_recurring.js" type="text/javascript" charset="utf-8"></script>
9        <link rel="stylesheet" href="../../codebase/dhtmlxscheduler.css" type="text/css" title="no title" charset="utf-8">
10        <link rel="stylesheet" href="../../codebase/ext/dhtmlxscheduler_recurring.css" type="text/css" title="no title" charset="utf-8">
11       
12
13       
14<style type="text/css" media="screen">
15        html, body{
16                margin:0px;
17                padding:0px;
18                height:100%;
19                overflow:hidden;
20        }       
21</style>
22
23
24<script type="text/javascript" charset="utf-8">
25        function init() {
26       
27
28
29
30                scheduler.config.xml_date="%Y-%m-%d %H:%i";
31                scheduler.config.prevent_cache = true;
32               
33                scheduler.config.details_on_create=true;
34                scheduler.config.details_on_dblclick=true;
35
36                scheduler.init('scheduler_here',new Date(2010,9,29),"month");
37                scheduler.load("php/events_rec.php");
38               
39                var dp = new dataProcessor("php/events_rec.php");
40                dp.init(scheduler);
41                       
42        }
43</script>
44
45<body onload="init();">
46        <div id="scheduler_here" class="dhx_cal_container" style='width:100%; height:100%;'>
47                <div class="dhx_cal_navline">
48                        <div class="dhx_cal_prev_button">&nbsp;</div>
49                        <div class="dhx_cal_next_button">&nbsp;</div>
50                        <div class="dhx_cal_today_button"></div>
51                        <div class="dhx_cal_date"></div>
52                        <div class="dhx_cal_tab" name="day_tab" style="right:204px;"></div>
53                        <div class="dhx_cal_tab" name="week_tab" style="right:140px;"></div>
54                        <div class="dhx_cal_tab" name="month_tab" style="right:76px;"></div>
55                </div>
56                <div class="dhx_cal_header">
57                </div>
58                <div class="dhx_cal_data">
59                </div>         
60        </div>
61</body>
Note: See TracBrowser for help on using the repository browser.