[MERGE] manually calendar view from trunk-proto61-dhtmlx-scheduler-vda

bzr revid: al@openerp.com-20110407164106-odb0y1qogrg4x2js
This commit is contained in:
Antony Lesuisse 2011-04-07 18:41:06 +02:00
parent f297599419
commit a590451a1b
145 changed files with 19900 additions and 45 deletions

View File

@ -23,15 +23,23 @@
<script type="text/javascript" src="/base/static/src/js/list.js"></script>
<script type="text/javascript" src="/base/static/src/js/search.js"></script>
<script type="text/javascript" src="/base/static/src/js/views.js"></script>
<script type="text/javascript" src="/base_gantt/static/lib/dhtmlxGantt/codebase/dhtmlxcommon.js"></script>
<script type="text/javascript" src="/base_gantt/static/lib/dhtmlxGantt/codebase/dhtmlxgantt.js"></script>
<script type="text/javascript" src="/base_gantt/static/src/gantt.js"></script>
<link rel="stylesheet" type="text/css" media="screen" href="/base_gantt/static/lib/dhtmlxGantt/codebase/dhtmlxgantt.css" />
<script type="text/javascript" src="/base_calendar/static/lib/dhtmlxScheduler/codebase/dhtmlxscheduler.js"></script>
<script type="text/javascript" src="/base_calendar/static/src/js/calendar.js"></script>
<link rel="stylesheet" type="text/css" media="screen" href="/base/static/lib/jquery.ui/css/smoothness/jquery-ui-1.8.9.custom.css" />
<link rel="stylesheet" type="text/css" media="screen" href="/base/static/lib/jquery.ui.notify/css/ui.notify.css" />
<link rel="stylesheet" type="text/css" media="screen" href="/base/static/lib/jquery.jqGrid/css/ui.jqgrid.css" />
<link rel="stylesheet" type="text/css" href="/base/static/lib/jquery.superfish/css/superfish.css" media="screen">
<link rel="stylesheet" type="text/css" media="screen" href="/base_gantt/static/lib/dhtmlxGantt/codebase/dhtmlxgantt.css" />
<link rel="stylesheet" type="text/css" media="screen" href="/base_calendar/static/lib/dhtmlxScheduler/codebase/dhtmlxscheduler.css">
<link rel="stylesheet" href="/base/static/src/css/base.css" type="text/css"/>
<script type="text/javascript">

View File

@ -122,6 +122,7 @@ openerp.base = function(instance) {
openerp.base.search(instance);
openerp.base.list(instance);
openerp.base.form(instance);
openerp.base.calendar(instance);
openerp.base.gantt(instance);
};

View File

@ -173,19 +173,6 @@
<br style="clear: both;"/>
<table id="todo_use_unique_id" class="jqGrid"></table>
</t>
<t t-name="GanttView">
<h3 class="title"><t t-esc="view.fields_view.arch.attrs.string"/></h3>
<table class="gantt-view" width="100%" height="100%" cellspacing="0" cellpadding="0">
<tr>
<td style="width:85%">
<div style="width:100%;height:300px;position:relative" id="GanttDiv"></div>
</td>
<td valign = "top">
<div id="gantt-sidebar"></div>
</td>
</tr>
</table>
</t>
<t t-name="FormView">
<h2 class="oe_view_title"><t t-esc="view.fields_view.arch.attrs.string"/></h2>
<div class="oe_form_header">
@ -511,4 +498,48 @@
</p>
</div>
</t>
<t t-name="CalendarView">
<h3 class="title"><t t-esc="view.fields_view.arch.attrs.string"/></h3>
<table class="calendar-view" width="100%" height="100%" cellspacing="0" cellpadding="0">
<tr>
<td>
<div style="height: 1000px;width: 100%;">
<div id="calendar-sidebar">
</div>
</div>
</td>
<td style="width:85%;" align="left">
<div id="openerp_scheduler" class="dhx_cal_container" style="height: 1000px;width: 100%;">
<div class="dhx_cal_navline">
<div class="dhx_cal_prev_button"></div>
<div class="dhx_cal_next_button"></div>
<div class="dhx_cal_today_button"></div>
<div class="dhx_cal_date"></div>
<div class="dhx_minical_icon" id="dhx_minical_icon"></div>
<div class="dhx_cal_tab" name="day_tab" style="right:204px;"></div>
<div class="dhx_cal_tab" name="week_tab" style="right:140px;"></div>
<div class="dhx_cal_tab" name="month_tab" style="right:76px;"></div>
</div>
<div class="dhx_cal_header">
</div>
<div class="dhx_cal_data">
</div>
</div>
</td>
</tr>
</table>
</t>
<t t-name="GanttView">
<h3 class="title"><t t-esc="view.fields_view.arch.attrs.string"/></h3>
<table class="gantt-view" width="100%" height="100%" cellspacing="0" cellpadding="0">
<tr>
<td style="width:85%">
<div style="width:100%;height:300px;position:relative" id="GanttDiv"></div>
</td>
<td valign = "top">
<div id="gantt-sidebar"></div>
</td>
</tr>
</table>
</t>
</templates>

View File

@ -1 +1,2 @@
#!/usr/bin/python
import controllers

View File

@ -0,0 +1 @@
import main

View File

@ -0,0 +1,357 @@
from base.controllers.main import View
import openerpweb, time, math, re, datetime as DT, pytz
COLOR_PALETTE = ['#f57900', '#cc0000', '#d400a8', '#75507b', '#3465a4', '#73d216', '#c17d11', '#edd400',
'#fcaf3e', '#ef2929', '#ff00c9', '#ad7fa8', '#729fcf', '#8ae234', '#e9b96e', '#fce94f',
'#ff8e00', '#ff0000', '#b0008c', '#9000ff', '#0078ff', '#00ff00', '#e6ff00', '#ffff00',
'#905000', '#9b0000', '#840067', '#510090', '#0000c9', '#009b00', '#9abe00', '#ffc900', ]
_colorline = ['#%02x%02x%02x' % (25 + ((r + 10) % 11) * 23, 5 + ((g + 1) % 11) * 20, 25 + ((b + 4) % 11) * 23) for r in range(11) for g in range(11) for b in range(11) ]
DT_SERVER_FORMATS = {
'datetime' : '%Y-%m-%d %H:%M:%S',
'date' : '%Y-%m-%d',
'time' : '%H:%M:%S'
}
DT_FORMAT_INFO = {'datetime' : ('%Y-%m-%d %H:%M:%S', DT.datetime, 0, 6),
'date': ('%Y-%m-%d', DT.date, 0, 3),
'time': ('%H:%M:%S', DT.time, 3, 6)}
def choice_colors(n):
if n > len(COLOR_PALETTE):
return _colorline[0:-1:len(_colorline) / (n + 1)]
elif n:
return COLOR_PALETTE[:n]
return []
class CalendarView(View):
_cp_path = "/base_calendar/calendarview"
mode = 'month'
date_start = None
date_delay = None
date_stop = None
color_field = None
day_length = 8
use_search = False
selected_day = None
date_format = '%Y-%m-%d'
info_fields = []
fields = {}
events = []
colors = {}
color_values = []
remote_timezone = 'utc'
client_timezone = False
calendar_fields = {}
concurrency_info = None
ids = []
model = ''
domain = []
context = {}
@openerpweb.jsonrequest
def load(self, req, model, view_id):
fields_view = self.fields_view_get(req.session, model, view_id, 'calendar')
return {'fields_view':fields_view}
def convert(self, event):
fields = [self.date_start]
if self.date_stop:
fields.append(self.date_stop)
for fld in fields:
fld_type = self.fields[fld]['type']
fmt = DT_SERVER_FORMATS[fld_type]
if event[fld] and fmt:
event[fld] = time.strptime(event[fld], fmt)
# default start/stop time is 9:00 AM / 5:00 PM
if fld_type == 'date' and event[fld]:
ds = list(event[fld])
if fld == self.date_start:
ds[3] = 9
elif fld == self.date_stop:
ds[3] = 17
event[fld] = tuple(ds)
@openerpweb.jsonrequest
def schedule_events(self, req, **kw):
self.model = kw['model']
self.mode = kw.get('mode') or self.mode or 'month'
self.fields = kw['fields']
self.color_field = kw.get('color_field') or self.color_field or None
self.colors = kw.get('colors') or {}
self.calendar_fields = kw['calendar_fields']
self.info_fields = kw['info_fields']
self.date_start = self.calendar_fields['date_start']['name']
self.domain = kw.get('domain') or []
self.remote_timezone = req.session.remote_timezone
self.client_timezone = req.session.client_timezone
if self.calendar_fields.get('date_stop'):
self.date_stop = self.calendar_fields['date_stop']['name']
if self.calendar_fields.get('date_delay'):
self.date_delay = self.calendar_fields['date_delay']['name']
model = req.session.model(self.model)
event_ids = model.search(self.domain)
self.events = model.read(event_ids, self.fields.keys())
result = []
self.date_format = req.session._lang and req.session._lang['date_format']
if self.color_field:
for evt in self.events:
key = evt[self.color_field]
name = key
value = key
if isinstance(key, list): # M2O, XMLRPC returns List instead of Tuple
name = key[0]
value = key[-1]
evt[self.color_field] = key = key[-1]
if isinstance(key, tuple): # M2O
value, name = key
self.colors[key] = (name, value, None)
colors = choice_colors(len(self.colors))
for i, (key, value) in enumerate(self.colors.items()):
self.colors[key] = [value[0], value[1], colors[i]]
for evt in self.events:
self.convert(evt)
a = self.get_event_widget(evt)
result.append(a)
return {'result':result,'sidebar':self.colors}
def parsedatetime(self, string):
kind = 'datetime'
if '-' in string and ':' in string:
kind = 'datetime'
elif '-' in string:
kind = 'date'
elif ':' in string:
kind = 'time'
fmt, obj, i, j = DT_FORMAT_INFO[kind]
return obj(*time.strptime(string, fmt)[i:j])
def parse_datetime(self, value, kind="datetime", as_timetuple=False):
server_format = DT_SERVER_FORMATS[kind]
local_format = self.date_format
if not value:
return False
if isinstance(value, (time.struct_time, tuple)):
value = time.strftime(local_format, value)
try:
value = time.strptime(value, local_format)
except ValueError:
try:
# might be in server format already (e.g. filter domain)
value = time.strptime(value, server_format)
except ValueError:
try:
dt = list(time.localtime())
dt[2] = int(value)
value = tuple(dt)
except:
return False
if kind == "datetime":
try:
value = self.tz_convert(value, 'parse')
except Exception,e:
print "*******************Error in timezone parsing *********",e
if as_timetuple:
return value
return time.strftime(server_format, value)
@openerpweb.jsonrequest
def edit_events(self, req,**kw):
data = {}
ds = self.parsedatetime(kw['start_date'])
de = self.parsedatetime(kw['end_date'])
data[kw['calendar_fields']['date_start']['name']] = self.parse_datetime(ds.timetuple())
if 'date_stop' in kw['calendar_fields']:
data[kw['calendar_fields']['date_stop']['name']] = self.parse_datetime(de.timetuple())
elif 'date_delay' in kw['calendar_fields']:
day_length = kw['calendar_fields']['day_length']
tds = time.mktime(ds.timetuple())
tde = time.mktime(de.timetuple())
n = (tde - tds) / (60 * 60)
if n > day_length:
d = math.floor(n / 24)
h = n % 24
n = d * day_length + h
data[kw['calendar_fields']['date_delay']['name']] = n
error = None
try:
req.session.model(kw['model']).write([int(kw['id'])], data)
except Exception, e:
error = e
return error
def tz_convert(self, struct_time, action):
# if no client timezone is configured, consider the client is in the same
# timezone as the server
lzone = pytz.timezone(self.client_timezone or self.remote_timezone)
szone = pytz.timezone(self.remote_timezone)
dt = DT.datetime.fromtimestamp(time.mktime(struct_time))
if action == 'parse':
fromzone = lzone
tozone = szone
elif action == 'format':
fromzone = szone
tozone = lzone
else:
raise Exception("_tz_convert action should be 'parse' or 'format'. Not '%s'" % (action, ))
localized_original_datetime = fromzone.localize(dt, is_dst=True)
destination_datetime = localized_original_datetime.astimezone(tozone)
return destination_datetime.timetuple()
def format_datetime(self, value, kind="datetime", as_timetuple=False):
"""Convert date value to the local datetime considering timezone info.
@param value: the date value
@param kind: type of the date value (date, time or datetime)
@param as_timetuple: return timetuple
@type value: basestring or time.time_tuple)
@return: string or timetuple
"""
server_format = DT_SERVER_FORMATS[kind]
local_format = self.date_format
if not value:
return ''
if isinstance(value, (time.struct_time, tuple)):
value = time.strftime(server_format, value)
if isinstance(value, DT.datetime):
value = value
try:
value = DT.datetime.strptime(value[:10], server_format)
return value.strftime(local_format)
except:
return ''
value = value.strip()
# remove trailing miliseconds
value = re.sub("(.*?)(\s+\d{2}:\d{2}:\d{2})(\.\d+)?$", "\g<1>\g<2>", value)
# add time part in value if missing
if kind == 'datetime' and not re.search('\s+\d{2}:\d{2}:\d{2}?$', value):
value += ' 00:00:00'
# remove time part from value
elif kind == 'date':
value = re.sub('\s+\d{2}:\d{2}:\d{2}(\.\d+)?$', '', value)
value = time.strptime(value, server_format)
if kind == "datetime":
try:
value = self.tz_convert(value, 'format')
except Exception, e:
print "\n\n\n************ Error in timezone formatting", e
if as_timetuple:
return value
return time.strftime(local_format, value)
def get_event_widget(self, event):
title = '' # the title
description = [] # the description
if self.info_fields:
f = self.info_fields[0]
s = event[f]
if isinstance(s, (tuple, list)): s = s[-1]
title = s
for f in self.info_fields[1:]:
s = event[f]
if isinstance(s, (tuple, list)):
s = s[-1]
if s:
description.append(str(s))
starts = event.get(self.date_start)
ends = event.get(self.date_delay) or 1.0
span = 0
if starts and ends:
n = 0
h = ends
if ends == self.day_length:
span = 1
elif ends > self.day_length:
n = ends / self.day_length
h = ends % self.day_length
n = int(math.floor(n))
if h > 0:
span = n + 1
else:
span = n
ends = time.localtime(time.mktime(starts) + (h * 60 * 60) + (n * 24 * 60 * 60))
if starts and self.date_stop:
ends = event.get(self.date_stop)
if not ends:
ends = time.localtime(time.mktime(starts) + 60 * 60)
tds = time.mktime(starts)
tde = time.mktime(ends)
if tds >= tde:
tde = tds + 60 * 60
ends = time.localtime(tde)
n = (tde - tds) / (60 * 60)
if n >= self.day_length:
span = math.ceil(n / 24)
starts = self.format_datetime(starts, "datetime", True)
ends = self.format_datetime(ends, "datetime", True)
title = title.strip()
description = ', '.join(description).strip()
return {'id': event['id'], 'start_date': str(DT.datetime(*starts[:6])), 'end_date': str(DT.datetime(*ends[:6])), 'text': title, 'title': description, 'color': self.colors[event[self.color_field]][-1]}

View File

@ -0,0 +1,73 @@
<h1>GNU GENERAL PUBLIC LICENSE</h1>
Version 2, June 1991 </p>
</p>
<p>Copyright (C) 1989, 1991 Free Software Foundation, Inc. </p>
<p>59 Temple Place - Suite 330, Boston, MA 02111-1307, USA</p>
</p>
<p>Everyone is permitted to copy and distribute verbatim copies</p>
<p>of this license document, but changing it is not allowed.</p>
</p>
</p>
<p>TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION</p>
<p>0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". </p>
</p>
<p>Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. </p>
</p>
<p>1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. </p>
</p>
<p>You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. </p>
</p>
<p>2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: </p>
</p>
</p>
<p>a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. </p>
</p>
<p>b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. </p>
</p>
<p>c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) </p>
<p>These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. </p>
</p>
<p>Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. </p>
</p>
<p>In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. </p>
</p>
<p>3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: </p>
</p>
<p>a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, </p>
</p>
<p>b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, </p>
</p>
<p>c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) </p>
<p>The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. </p>
</p>
<p>If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. </p>
</p>
<p>4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. </p>
</p>
<p>5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. </p>
</p>
<p>6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. </p>
</p>
<p>7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. </p>
</p>
<p>If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. </p>
</p>
<p>It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. </p>
</p>
<p>This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. </p>
</p>
<p>8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. </p>
</p>
<p>9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. </p>
</p>
<p>Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. </p>
</p>
<p>10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. </p>
</p>
<p>NO WARRANTY</p>
</p>
<p>11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. </p>
</p>
<p>12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. </p>
</p>
<p>

View File

@ -0,0 +1,525 @@
.dhx_cal_container {
background-color:#C2D5FC;
font-family:Tahoma;
font-size:8pt;
position:relative;
overflow:hidden;
}
.dhx_cal_container div {
-moz-user-select:none;
-moz-user-select:-moz-none;
}
.dhx_cal_navline {
height:20px;
position:absolute;
z-index:3;
width:750px;
color:#2F3A48;
}
.dhx_cal_navline div {
position:absolute;
top:2px;
white-space:nowrap;
}
.dhx_cal_navline .dhx_cal_date {
font-weight:600;
left:210px;
}
.dhx_cal_button .dhx_left_bg {
width:1px;
overflow:hidden;
height:17px;
z-index:20;
top:0;
}
.dhx_cal_prev_button {
background-image:url(imgs/buttons.png);
background-position:0 0;
width:29px;
height:17px;
left:50px;
cursor:pointer;
}
.dhx_cal_next_button{
background-image:url(imgs/buttons.png);
background-position:-30px 0;
width:29px;
height:17px;
left:80px;
cursor:pointer;
}
.dhx_cal_today_button{
background-image:url(imgs/buttons.png);
background-position:-60px 0;
width:75px;
height:17px;
left:112px;
cursor:pointer;
text-align:center;
text-decoration:underline;
}
.dhx_cal_tab {
background-image:url(imgs/white_tab.png);
width:61px;
height:19px;
text-align:center;
text-decoration:underline;
padding-top:3px;
cursor:pointer;
}
.dhx_cal_tab.active {
background-image:url(imgs/blue_tab.png);
text-decoration:none;
height:20px;
padding-top:2px;
cursor:default;
font-weight:bold;
}
.dhx_cal_header {
position:absolute;
left:10px;
top:23px;
width:750px;
border-top:1px dotted #8894A3;
border-right:1px dotted #8894A3;
z-index:2;
overflow:hidden;
color:#2F3A48;
}
.dhx_cal_data {
border-top:1px dotted #8894A3;
position:absolute;
top:44px;
width:600px;
overflow-y:auto;
overflow-x:hidden;
}
.dhx_scale_bar {
position:absolute;
text-align:center;
background-color:#C2D5FC;
padding-top:3px;
border-left:1px dotted #586A7E;
}
.dhx_scale_holder {
position:absolute;
border-right:1px dotted #586A7E;
background-image:url(imgs/databg.png);
}
.dhx_scale_holder_now {
position:absolute;
border-right:1px dotted #586A7E;
background-image:url(imgs/databg_now.png);
}
.dhx_scale_hour {
height:41px;
width:50px;
border-bottom:1px dotted #8894A3;
background-color:#C2D5FC;
text-align:center;
line-height:40px;
color:#586A7E;
overflow:hidden;
}
.dhx_month_head {
background-color:#EBEFF4;
color:#2F3A48;
border-right:1px dotted #586A7E;
height:18px;
padding-right:5px;
padding-top:3px;
text-align:right;
}
.dhx_month_body {
border-right:1px dotted #586A7E;
border-bottom:1px dotted #586A7E;
background-color:#FFF;
}
.dhx_now .dhx_month_body {
background-color:#E2EDFF;
}
.dhx_after .dhx_month_body,.dhx_before .dhx_month_body {
background-color:#ECECEC;
}
.dhx_after .dhx_month_head,.dhx_before .dhx_month_head {
background-color:#E2E3E6;
color:#94A6BB;
}
.dhx_now .dhx_month_head {
background-color:#D1DEF4;
font-weight:bold;
}
.dhx_cal_drag {
position:absolute;
z-index:9999;
background-color:#FFE763;
border:1px solid #B7A543;
opacity:.5;
filter:alpha(opacity=50);
}
.dhx_loading {
position:absolute;
width:128px;
height:15px;
background-image:url(imgs/loading.gif);
z-index:9999;
}
.dhx_multi_day_icon,.dhx_multi_day {
position:absolute;
background-color:#E1E6FF;
background-repeat:no-repeat;
border-bottom:1px dotted #8894A3;
border-left:1px dotted #8894A3;
}
.dhx_multi_day_icon {
background-image:url(imgs/clock_big.gif);
}
.dhx_multi_day_icon_small {
background-image:url(imgs/clock_small.gif);
}
.dhx_multi_day_icon,.dhx_multi_day_icon_small {
background-position:center center;
position:absolute;
background-color:#E1E6FF;
background-repeat:no-repeat;
border-bottom:1px dotted #8894A3;
border-left:1px dotted #8894A3;
}
.dhtmlxLayoutPolyContainer_dhx_skyblue .dhx_cal_container {
background-color:#d0e5ff;
}
.dhx_cal_event div {
background-color:#FFE763;
border:1px solid #B7A543;
color:#887A2E;
overflow:hidden;width:100%;
font-family:Tahoma;
font-size:8pt;
}
/*event in day or week or month view*/
.dhx_cal_event.purple div,
.dhx_cal_event_line.purple {
background-color:purple !important;
color:white !important;
}
.dhx_move_denied .dhx_cal_event .dhx_header,.dhx_move_denied .dhx_cal_event .dhx_title {
cursor:default;
}
.dhx_cal_event .dhx_header {
height:1px;
margin-left:1px;
border-width:1px 1px 0 1px;
cursor:pointer;
}
.dhx_cal_event .dhx_title {
height:12px;
border-width:0 1px 1px 1px;
border-bottom-style:dotted;
font-size:7pt;
font-weight:bold;
text-align:center;
background-position:right;
background-repeat:no-repeat;
cursor:pointer;
}
.dhx_cal_event .dhx_body {
border-width:0 1px 1px 1px;
padding:5px;
}
.dhx_resize_denied .dhx_cal_event .dhx_footer {
cursor:default;
}
.dhx_cal_event .dhx_footer {
height:1px;
margin-left:2px;
border-width:0 1px 1px 1px;
cursor:s-resize;
}
.dhx_cal_event_line {
background-color:#FFE763;
border:1px solid #B7A543;
font-family:Tahoma;
font-size:8pt;
height:13px;
padding-left:10px;
color:#887A2E;
cursor:pointer;
overflow:hidden;
}
.dhx_cal_event_clear {
font-family:Tahoma;
font-size:8pt;
height:13px;
padding-left:2px;
color:#887A2E;
white-space:nowrap;
overflow:hidden;
cursor:pointer;
}
.dhx_in_move {
background-color:#FFFF80;
}
div.dhx_cal_editor {
background-color:#FFE763;
border:1px solid #B7A543;
border-top-style:dotted;
z-index:999;
position:absolute;
overflow:hidden;
}
textarea.dhx_cal_editor {
width:100%;
height:100%;
border:0 solid black;
margin:none;
padding:none;
overflow:auto;
}
div.dhx_menu_head {
background-image:url(imgs/controls.gif);
background-position:0 -43px;
width:10px;
height:10px;
margin-left:5px;
margin-top:1px;
border:none;
cursor:default;
}
div.dhx_menu_icon {
background-image:url(imgs/controls.gif);
width:20px;
height:20px;
margin-left:-5px;
margin-top:0;
border:none;
cursor:pointer;
}
div.icon_details {
background-position:0 0;
}
div.icon_edit {
background-position:-22px 0;
}
div.icon_save {
background-position:-84px -1px;
}
div.icon_cancel {
background-position:-62px 0;
}
div.icon_delete {
background-position:-42px 0;
}
.dhx_cal_light {
height:400px;
light:300px;
background-color:#FFE763;
font-family:Tahoma;
font-size:8pt;
border:1px solid #B7A64B;
color:#887A2E;
position:absolute;
z-index:10001;
width:580px;
height:300px;
}
.dhx_mark {
position:relative;
top:3px;
background-image:url('./imgs/controls.gif');
background-position:0 -43px;
padding-left:10px;
}
.dhx_ie6 .dhx_mark {
background-position:6px -41px;
}
.dhx_cal_light select {
font-family:Tahoma;
font-size:8pt;
color:#887A2E;
padding:2px;
margin:0;
}
.dhx_cal_ltitle {
padding:2px 0 2px 5px;
overflow:hidden;
white-space:nowrap;
}
.dhx_cal_ltitle span {
white-space:nowrap;
}
.dhx_cal_lsection {
background-color:#DBCF8C;
color:#FFF4B5;
font-size:18pt;
font-weight:bold;
padding:5px 0 3px 10px;
}
.dhx_cal_ltext {
padding:2px 0 2px 10px;
height:130px;
height=140px;
overflow:hidden;
}
.dhx_cal_ltext textarea {
background-color:transparent;
overflow:auto;
border:none;
color:#887A2E;
height:100%;
width:100%;
outline:none!important;
}
.dhx_time {
font-weight:bold;
}
.dhx_cal_light .dhx_title {
padding-left:10px;
}
.dhx_cal_larea {
border:1px solid #DCC43E;
background-color:#FFF4B5;
overflow:hidden;
margin-left:3px;
width:572px;
height:1px;
}
.dhx_btn_set {
padding:5px 10px 0 10px;
float:left;
}
.dhx_btn_set div {
float:left;
height:21px;
line-height:21px;
vertical-align:middle;
cursor:pointer;
}
.dhx_save_btn {
background-image:url('./imgs/controls.gif');
background-position:-84px 0;
width:21px;
}
.dhx_cancel_btn {
background-image:url('./imgs/controls.gif');
background-position:-63px 0;
width:20px;
}
.dhx_delete_btn {
background-image:url('./imgs/controls.gif');
background-position:-42px 0;
width:20px;
}
.dhx_cal_cover {
width:100%;
height:100%;
position:absolute;
z-index:10000;
top:0;
left:0;
background-color:black;
opacity:.1;
filter:alpha(opacity=10);
}
.dhx_custom_button {
padding:0 3px 0 3px;
color:#887A2E;
font-family:Tahoma;
font-size:8pt;
background-color:#FFE763;
font-weight:normal;
margin-right:5px;
margin-top:5px;
cursor:pointer;
}
.dhx_custom_button div {
cursor:pointer;
float:left;
height:21px;
line-height:21px;
vertical-align:middle;
}
.dhx_fullday_checkbox {
padding-top:5px;
float:right;
}
.dhx_fullday_checkbox input {
vertical-align:middle;
}
.dhx_fullday_checkbox label {
font-size:12pt;
font-weight:bold;
vertical-align:middle;
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,9 @@
/*
dhtmlxScheduler v.2.3
This software is allowed to use under GPL or you need to obtain Commercial or Enterise License
to use it in not GPL project. Please contact sales@dhtmlx.com for details
(c) DHTMLX Ltd.
*/
scheduler.attachEvent("onTemplatesReady",function(){var B=scheduler.date.str_to_date(scheduler.config.api_date);var C=scheduler.date.date_to_str(scheduler.config.api_date);var D=scheduler.templates.month_day;scheduler.templates.month_day=function(E){return"<a jump_to='"+C(E)+"' href='#'>"+D(E)+"</a>"};var A=scheduler.templates.week_scale_date;scheduler.templates.week_scale_date=function(E){return"<a jump_to='"+C(E)+"' href='#'>"+A(E)+"</a>"};dhtmlxEvent(this._obj,"click",function(E){var G=E.target||event.srcElement;var F=G.getAttribute("jump_to");if(F){scheduler.setCurrentView(B(F),"day")}})});

View File

@ -0,0 +1,9 @@
/*
dhtmlxScheduler v.2.3
This software is allowed to use under GPL or you need to obtain Commercial or Enterise License
to use it in not GPL project. Please contact sales@dhtmlx.com for details
(c) DHTMLX Ltd.
*/
scheduler.date.add_agenda=function(A){return(new Date(A.valueOf()))};scheduler.dblclick_dhx_agenda_area=function(){if(!this.config.readonly&&this.config.dblclick_create){this.addEventNow()}};scheduler.templates.agenda_time=function(C,A,B){if(B._timed){return this.day_date(B.start_date,B.end_date,B)+" "+this.event_date(C)}else{return scheduler.templates.day_date(C)+" &ndash; "+scheduler.templates.day_date(A)}};scheduler.templates.agenda_text=function(A){return A.text};scheduler.date.agenda_start=function(A){return A};scheduler.attachEvent("onTemplatesReady",function(){scheduler.attachEvent("onSchedulerResize",function(){if(this._mode=="agenda"){this.agenda_view(true);return false}return true});var A=scheduler.render_data;scheduler.render_data=function(D){if(this._mode=="agenda"){B()}else{return A.apply(this,arguments)}};function C(E){if(E){var D=scheduler.locale.labels;scheduler._els.dhx_cal_header[0].innerHTML="<div class='dhx_agenda_line'><div>"+D.date+"</div><span style='padding-left:25px'>"+D.description+"</span></div>";scheduler._table_view=true;scheduler.set_sizes()}}function B(){var D=scheduler._date;var H=scheduler.get_visible_events();H.sort(function(J,I){return J.start_date>I.start_date?1:-1});var G="<div class='dhx_agenda_area'>";for(var F=0;F<H.length;F++){G+="<div class='dhx_agenda_line' event_id='"+H[F].id+"' style='"+(H[F]._text_style||"")+"'><div>"+scheduler.templates.agenda_time(H[F].start_date,H[F].end_date,H[F])+"</div>";G+="<div class='dhx_event_icon icon_details'>&nbsp</div>";G+="<span>"+scheduler.templates.agenda_text(H[F])+"</span></div>"}G+="<div class='dhx_v_border'></div></div>";scheduler._els.dhx_cal_data[0].scrollTop=0;scheduler._els.dhx_cal_data[0].innerHTML=G;var E=scheduler._els.dhx_cal_data[0].firstChild.childNodes;scheduler._els.dhx_cal_date[0].innerHTML="";scheduler._rendered=[];for(var F=0;F<E.length-1;F++){scheduler._rendered[F]=E[F]}}scheduler.agenda_view=function(D){scheduler._min_date=scheduler.config.agenda_start||(new Date());scheduler._max_date=scheduler.config.agenda_end||(new Date(9999,1,1));scheduler._table_view=true;C(D);if(D){B()}else{}}});

View File

@ -0,0 +1 @@
(function(){var C,D;var B;scheduler.config.collision_limit=1;scheduler.attachEvent("onBeforeDrag",function(I){var H=scheduler._props?scheduler._props[this._mode]:null;var F=scheduler.matrix?scheduler.matrix[this._mode]:null;var G=H||F;if(H){var E=G.map_to}if(F){var E=G.y_property}if((G)&&I){C=this.getEvent(I)[E];D=this.getEvent(I).start_date}return true});scheduler.attachEvent("onBeforeLightbox",function(F){var E=scheduler.getEvent(F);B=[E.start_date,E.end_date];return true});scheduler.attachEvent("onEventChanged",function(F){if(!F){return true}var E=scheduler.getEvent(F);if(!A(E)){if(!B){return false}E.start_date=B[0];E.end_date=B[1];E._timed=this.is_one_day_event(E)}return true});scheduler.attachEvent("onBeforeEventChanged",function(E,F,G){return A(E)});scheduler.attachEvent("onEventSave",function(F,E){if(E.rec_type){scheduler._roll_back_dates(E)}return A(E)});function A(N){var Q=[];if(N.rec_type){var F=scheduler.getRecDates(N);for(var I=0;I<F.length;I++){var M=scheduler.getEvents(F[I].start_date,F[I].end_date);for(var J=0;J<M.length;J++){if((M[J].event_pid||M[J].id)!=N.id){Q.push(M[J])}}}Q.push(N)}else{Q=scheduler.getEvents(N.start_date,N.end_date)}var E=scheduler._props?scheduler._props[scheduler._mode]:null;var O=scheduler.matrix?scheduler.matrix[scheduler._mode]:null;var H=E||O;if(E){var G=H.map_to}if(O){var G=H.y_property}var P=true;if(H){var L=0;for(var K=0;K<Q.length;K++){if(Q[K][G]==N[G]){L++}}if(L>scheduler.config.collision_limit){scheduler._drag_event.start_date=D;N[G]=C;P=false}}else{if(Q.length>scheduler.config.collision_limit){P=false}}if(!P){return !scheduler.callEvent("onEventCollision",[N,Q])}return P}})();

View File

@ -0,0 +1,9 @@
/*
dhtmlxScheduler v.2.3
This software is allowed to use under GPL or you need to obtain Commercial or Enterise License
to use it in not GPL project. Please contact sales@dhtmlx.com for details
(c) DHTMLX Ltd.
*/
(function(){function B(E,D,F){var G=E+"="+F+(D?("; "+D):"");document.cookie=G}function A(E){var F=E+"=";if(document.cookie.length>0){var G=document.cookie.indexOf(F);if(G!=-1){G+=F.length;var D=document.cookie.indexOf(";",G);if(D==-1){D=document.cookie.length}return document.cookie.substring(G,D)}}return""}var C=true;scheduler.attachEvent("onBeforeViewChange",function(F,E,D,I){if(C){C=false;var G=A("scheduler_settings");if(G){G=G.split("@");G[0]=this.templates.xml_date(G[0]);this.setCurrentView(G[0],G[1]);return false}}var H=this.templates.xml_format(I||E)+"@"+(D||F);B("scheduler_settings","expires=Sun, 31 Jan 9999 22:00:00 GMT",H);return true})})();

View File

@ -0,0 +1,9 @@
/*
dhtmlxScheduler v.2.3
This software is allowed to use under GPL or you need to obtain Commercial or Enterise License
to use it in not GPL project. Please contact sales@dhtmlx.com for details
(c) DHTMLX Ltd.
*/
scheduler.form_blocks.combo={render:function(B){var A="";A+="<div class='"+B.type+"' style='height:"+(B.height||20)+"px;' ></div>";return A},set_value:function(F,H,E,C){if(F._combo){F._combo.destructor()}window.dhx_globalImgPath=C.image_path||"/";F._combo=new dhtmlXCombo(F,C.name,F.offsetWidth-8);F._combo.enableFilteringMode(!!C.filtering,C.script_path||null,!!C.cache);if(!C.script_path){var G=[];for(var D=0;D<C.options.length;D++){var A=[];A.push(C.options[D].key);A.push(C.options[D].label);G.push(A)}F._combo.addOption(G);if(E[C.map_to]){var B=F._combo.getIndexByValue(E[C.map_to]);F._combo.selectOption(B)}}else{F._combo.setComboValue(E[C.map_to]||null)}},get_value:function(D,C,A){var B=D._combo.getSelectedValue();return B},focus:function(A){}};scheduler.form_blocks.radio={render:function(C){var B="";B+="<div class='"+C.type+"' style='height:"+C.height+"px;' >";for(var A=0;A<C.options.length;A++){var D=scheduler.uid();B+="<input id='"+D+"' type='radio' name='"+C.name+"' value='"+C.options[A].key+"'><label for='"+D+"'> "+C.options[A].label+"</label>";if(C.vertical){B+="<br/>"}}B+="</div>";return B},set_value:function(D,F,C,A){var E=D.getElementsByTagName("input");for(var B=0;B<E.length;B++){E[B].checked=false;if(E[B].value==C[A.map_to]){E[B].checked=true}}},get_value:function(D,C,A){var E=D.getElementsByTagName("input");for(var B=0;B<E.length;B++){if(E[B].checked){return E[B].value}}},focus:function(A){}};scheduler.form_blocks.checkbox={render:function(A){return""},set_value:function(C,D,B,A){var F=scheduler.uid();var E=false;if(typeof A.checked_value!="undefined"&&B[A.map_to]==A.checked_value){E=true}C.previousSibling.className+=" dhx_cal_checkbox";C.previousSibling.innerHTML="<input id='"+F+"' type='checkbox' value='true' name='"+A.name+"'"+((E)?"checked='true'":"")+"'><label for='"+F+"'>"+(scheduler.locale.labels["section_"+A.name]||A.name)+"</label>"},get_value:function(C,B,A){var D=C.previousSibling.getElementsByTagName("input")[0];return(D.checked)?(A.checked_value||true):(A.unchecked_value||false)},focus:function(A){}};

View File

@ -0,0 +1,9 @@
/*
dhtmlxScheduler v.2.3
This software is allowed to use under GPL or you need to obtain Commercial or Enterise License
to use it in not GPL project. Please contact sales@dhtmlx.com for details
(c) DHTMLX Ltd.
*/
scheduler.expand=function(){var A=scheduler._obj;do{A._position=A.style.position||"";A.style.position="static"}while((A=A.parentNode)&&A.style);A=scheduler._obj;A.style.position="absolute";A._width=A.style.width;A._height=A.style.height;A.style.width=A.style.height="100%";A.style.top=A.style.left="0px";var B=document.body;B.scrollTop=0;B=B.parentNode;if(B){B.scrollTop=0}document.body._overflow=document.body.style.overflow||"";document.body.style.overflow="hidden";scheduler._maximize()};scheduler.collapse=function(){var A=scheduler._obj;do{A.style.position=A._position}while((A=A.parentNode)&&A.style);A=scheduler._obj;A.style.width=A._width;A.style.height=A._height;document.body.style.overflow=document.body._overflow;scheduler._maximize()};scheduler.attachEvent("onTemplatesReady",function(){var A=document.createElement("DIV");A.className="dhx_expand_icon";scheduler.toggleIcon=A;scheduler._obj.appendChild(A);A.onclick=function(){if(!scheduler.expanded){scheduler.expand()}else{scheduler.collapse()}}});scheduler._maximize=function(){this.expanded=!this.expanded;this.toggleIcon.style.backgroundPosition="0px "+(this._expand?"0":"18")+"px";if(scheduler.callEvent("onSchedulerResize",[])){scheduler.update_view()}};

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,9 @@
/*
dhtmlxScheduler v.2.3
This software is allowed to use under GPL or you need to obtain Commercial or Enterise License
to use it in not GPL project. Please contact sales@dhtmlx.com for details
(c) DHTMLX Ltd.
*/
scheduler.attachEvent("onTemplatesReady",function(){var B=document.body.getElementsByTagName("DIV");for(var A=0;A<B.length;A++){var C=B[A].className||"";C=C.split(":");if(C.length==2&&C[0]=="template"){var D='return "'+(B[A].innerHTML||"").replace(/\"/g,'\\"').replace(/[\n\r]+/g,"")+'";';D=unescape(D).replace(/\{event\.([a-z]+)\}/g,function(F,E){return'"+ev.'+E+'+"'});scheduler.templates[C[1]]=Function("start","end","ev",D);B[A].style.display="none"}}});

View File

@ -0,0 +1,9 @@
/*
dhtmlxScheduler v.2.3
This software is allowed to use under GPL or you need to obtain Commercial or Enterise License
to use it in not GPL project. Please contact sales@dhtmlx.com for details
(c) DHTMLX Ltd.
*/
(function(){var A=false;scheduler.attachEvent("onBeforeLightbox",function(){A=true;return true});scheduler.attachEvent("onAfterLightbox",function(){A=false;return true});dhtmlxEvent(document,(_isOpera?"keypress":"keydown"),function(D){D=D||event;if(!A){if(D.keyCode==37||D.keyCode==39){D.cancelBubble=true;var B=scheduler.date.add(scheduler._date,(D.keyCode==37?-1:1),scheduler._mode);scheduler.setCurrentView(B);return true}else{if(D.ctrlKey&&D.keyCode==67){scheduler._copy_id=scheduler._select_id}else{if(D.ctrlKey&&D.keyCode==86){var C=scheduler.getEvent(scheduler._copy_id);if(C){var E=scheduler._copy_event(C);E.id=scheduler.uid();scheduler.addEvent(E)}}}}}})})();

View File

@ -0,0 +1,9 @@
/*
dhtmlxScheduler v.2.3
This software is allowed to use under GPL or you need to obtain Commercial or Enterise License
to use it in not GPL project. Please contact sales@dhtmlx.com for details
(c) DHTMLX Ltd.
*/
scheduler.config.limit_start=new Date(-3999,0,0);scheduler.config.limit_end=new Date(3999,0,0);scheduler.config.limit_view=false;(function(){var B=null;scheduler.attachEvent("onBeforeViewChange",function(E,D,C,F){F=F||D;C=C||E;if(scheduler.config.limit_view){if(F.valueOf()>scheduler.config.limit_end.valueOf()||this.date.add(F,1,C)<=scheduler.config.limit_start.valueOf()){setTimeout(function(){scheduler.setCurrentView(scheduler._date,C)},1);return false}}return true});var A=function(D){var E=scheduler.config;var C=(D.start_date.valueOf()>=E.limit_start.valueOf()&&D.end_date.valueOf()<=E.limit_end.valueOf());if(!C){scheduler._drag_id=null;scheduler._drag_mode=null;scheduler.callEvent("onLimitViolation",[D.id,D])}return C};scheduler.attachEvent("onBeforeDrag",function(C){if(!C){return true}return A(scheduler.getEvent(C))});scheduler.attachEvent("onClick",function(D,C){return A(scheduler.getEvent(D))});scheduler.attachEvent("onBeforeLightbox",function(D){var C=scheduler.getEvent(D);B=[C.start_date,C.end_date];return A(C)});scheduler.attachEvent("onEventAdded",function(D){if(!D){return true}var C=scheduler.getEvent(D);if(!A(C)){if(C.start_date<scheduler.config.limit_start){C.start_date=new Date(scheduler.config.limit_start)}if(C.end_date>scheduler.config.limit_end){C.end_date=new Date(scheduler.config.limit_end);C._timed=this.is_one_day_event(C)}if(C.start_date>C.end_date){C.end_date=this.date.add(C.start_date,(this.config.event_duration||this.config.time_step),"minute")}}return true});scheduler.attachEvent("onEventChanged",function(D){if(!D){return true}var C=scheduler.getEvent(D);if(!A(C)){if(!B){return false}C.start_date=B[0];C.end_date=B[1];C._timed=this.is_one_day_event(C)}return true});scheduler.attachEvent("onBeforeEventChanged",function(D,C,E){return A(D)})})();

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,9 @@
/*
dhtmlxScheduler v.2.3
This software is allowed to use under GPL or you need to obtain Commercial or Enterise License
to use it in not GPL project. Please contact sales@dhtmlx.com for details
(c) DHTMLX Ltd.
*/
scheduler.form_blocks.multiselect={render:function(C){var B="<div class='dhx_multi_select_"+C.name+"' style='overflow: auto; height: "+C.height+"px; position: relative;' >";for(var A=0;A<C.options.length;A++){B+="<label><input type='checkbox' value='"+C.options[A].key+"'/>"+C.options[A].label+"</label>";if(convertStringToBoolean(C.vertical)){B+="<br/>"}}B+="</div>";return B},set_value:function(C,J,I,A){var E=C.getElementsByTagName("input");for(var G=0;G<E.length;G++){E[G].checked=false}function H(M){var L=C.getElementsByTagName("input");for(var K=0;K<L.length;K++){L[K].checked=!!M[L[K].value]}}if(!scheduler._new_event){var D=[];if(I[A.map_to]){var F=I[A.map_to].split(",");for(var G=0;G<F.length;G++){D[F[G]]=true}H(D)}else{var B=document.createElement("div");B.className="dhx_loading";B.style.cssText="position: absolute; top: 40%; left: 40%;";C.appendChild(B);dhtmlxAjax.get(A.script_url+"?dhx_crosslink_"+A.map_to+"="+I.id+"&uid="+scheduler.uid(),function(K){var M=K.doXPath("//data/item");var N=[];for(var L=0;L<M.length;L++){N[M[L].getAttribute(A.map_to)]=true}H(N);C.removeChild(B)})}}},get_value:function(F,E,A){var C=[];var D=F.getElementsByTagName("input");for(var B=0;B<D.length;B++){if(D[B].checked){C.push(D[B].value)}}return C.join(",")},focus:function(A){}};

View File

@ -0,0 +1,9 @@
/*
dhtmlxScheduler v.2.3
This software is allowed to use under GPL or you need to obtain Commercial or Enterise License
to use it in not GPL project. Please contact sales@dhtmlx.com for details
(c) DHTMLX Ltd.
*/
(function(){function B(D){var C=function(){};C.prototype=D;return C}var A=scheduler._load;scheduler._load=function(C,F){C=C||this._load_url;if(typeof C=="object"){var E=B(this._loaded);for(var D=0;D<C.length;D++){this._loaded=new E();A.call(this,C[D],F)}}else{A.apply(this,arguments)}}})();

View File

@ -0,0 +1,9 @@
/*
dhtmlxScheduler v.2.3
This software is allowed to use under GPL or you need to obtain Commercial or Enterise License
to use it in not GPL project. Please contact sales@dhtmlx.com for details
(c) DHTMLX Ltd.
*/
scheduler.attachEvent("onTemplatesReady",function(){var C=(new dhtmlDragAndDropObject());var B=C.stopDrag;var A;C.stopDrag=function(D){A=D||event;return B.apply(this,arguments)};C.addDragLanding(scheduler._els.dhx_cal_data[0],{_drag:function(F,G,D){var E=scheduler.attachEvent("onEventCreated",function(I,H){if(!scheduler.callEvent("onExternalDragIn",[I,F,H])){this._drag_mode=this._drag_id=null;this.deleteEvent(I)}});if(scheduler.matrix[scheduler._mode]){scheduler.dblclick_dhx_matrix_cell(A)}else{scheduler._on_dbl_click(A)}scheduler.detachEvent(E)},_dragIn:function(E,D){return E},_dragOut:function(D){return this}})});

View File

@ -0,0 +1,9 @@
/*
dhtmlxScheduler v.2.3
This software is allowed to use under GPL or you need to obtain Commercial or Enterise License
to use it in not GPL project. Please contact sales@dhtmlx.com for details
(c) DHTMLX Ltd.
*/
scheduler.toPDF=function(C,J,P,L){var I=0;var H=0;var F=false;if(J=="fullcolor"){F=true;J="color"}J=J||"color";function M(T){T=parseFloat(T);if(isNaN(T)){return"auto"}return 100*T/I}function Q(T){T=parseFloat(T);if(isNaN(T)){return"auto"}return 100*T/H}function O(U){var T="";for(var V=0;V<U.length;V++){T+="\n<column><![CDATA["+U[V].innerHTML+"]]></column>"}I=U[0].offsetWidth;return T}function G(V,W){var T=parseInt(V.style.left);for(var U=0;U<scheduler._cols.length;U++){T-=scheduler._cols[U];if(T<0){return U}}return W}function N(U,W){var V=parseInt(U.style.top);for(var T=0;T<scheduler._colsS.heights.length;T++){if(scheduler._colsS.heights[T]>V){return T}}return W}function A(W){var U="";var X=W.firstChild.rows;for(var V=0;V<X.length;V++){var Y=[];for(var T=0;T<X[V].cells.length;T++){Y.push(X[V].cells[T].firstChild.innerHTML)}U+="\n<row height='"+W.firstChild.rows[V].cells[0].offsetHeight+"'><![CDATA["+Y.join("|")+"]]></row>";H=W.firstChild.rows[0].cells[0].offsetHeight}return U}function S(X){var U="<data profile='"+X+"'";if(P){U+=" header='"+P+"'"}if(L){U+=" footer='"+L+"'"}U+=">";U+="<scale mode='"+scheduler._mode+"' today='"+scheduler._els.dhx_cal_date[0].innerHTML+"'>";if(scheduler._mode=="agenda"){var T=scheduler._els.dhx_cal_header[0].childNodes[0].childNodes;U+="<column>"+T[0].innerHTML+"</column><column>"+T[1].innerHTML+"</column>"}else{if(scheduler._mode=="year"){var T=scheduler._els.dhx_cal_data[0].childNodes;for(var V=0;V<T.length;V++){U+="<month label='"+T[V].childNodes[0].innerHTML+"'>";U+=O(T[V].childNodes[1].childNodes);U+=A(T[V].childNodes[2]);U+="</month>"}}else{U+="<x>";var T=scheduler._els.dhx_cal_header[0].childNodes;U+=O(T);U+="</x>";var W=scheduler._els.dhx_cal_data[0];if(W.firstChild.tagName=="TABLE"){U+=A(W)}else{W=W.childNodes[W.childNodes.length-1];while(W.className.indexOf("dhx_scale_holder")==-1){W=W.previousSibling}W=W.childNodes;U+="<y>";for(var V=0;V<W.length;V++){U+="\n<row><![CDATA["+W[V].innerHTML+"]]></row>"}U+="</y>";H=W[0].offsetHeight}}}U+="</scale>";return U}function E(U,T){return(window.getComputedStyle?(window.getComputedStyle(U,null)[T]):(U.currentStyle?U.currentStyle[T]:null))||""}function B(){var b="";var j=scheduler._rendered;if(scheduler._mode=="agenda"){for(var Z=0;Z<j.length;Z++){b+="<event><head>"+j[Z].childNodes[0].innerHTML+"</head><body>"+j[Z].childNodes[2].innerHTML+"</body></event>"}}else{if(scheduler._mode=="year"){var j=scheduler.get_visible_events();for(var Z=0;Z<j.length;Z++){var f=j[Z].start_date;if(f.valueOf()<scheduler._min_date.valueOf()){f=scheduler._min_date}while(f<j[Z].end_date){var U=f.getMonth()+12*(f.getFullYear()-scheduler._min_date.getFullYear())-scheduler.week_starts._month;var g=scheduler.week_starts[U]+f.getDate()-1;b+="<event day='"+(g%7)+"' week='"+Math.floor(g/7)+"' month='"+U+"'></event>";scheduler._mark_year_date(f);f=scheduler.date.add(f,1,"day");if(f.valueOf()>=scheduler._max_date.valueOf()){break}}}}else{for(var Z=0;Z<j.length;Z++){var X=M(j[Z].style.left);var V=Q(j[Z].style.top);var e=M(j[Z].style.width);var a=Q(j[Z].style.height);var Y=j[Z].className.split(" ")[0].replace("dhx_cal_","");var c=scheduler.getEvent(j[Z].getAttribute("event_id"));var g=c._sday;var T=c._sweek;if(scheduler._mode!="month"){if(parseInt(j[Z].style.left)<=26){X=2;e+=M(j[Z].style.left)-1}if(j[Z].parentNode==scheduler._els.dhx_cal_data[0]){continue}X+=M(j[Z].parentNode.style.left);X-=M(51)}else{a=parseInt(j[Z].offsetHeight);V=parseInt(j[Z].style.top)-22;g=G(j[Z],g);T=N(j[Z],T)}b+="\n<event week='"+T+"' day='"+g+"' type='"+Y+"' x='"+X+"' y='"+V+"' width='"+e+"' height='"+a+"'>";if(Y=="event"){b+="<header><![CDATA["+j[Z].childNodes[1].innerHTML+"]]></header>";var W=F?E(j[Z].childNodes[2],"color"):"";var h=F?E(j[Z].childNodes[2],"backgroundColor"):"";b+="<body backgroundColor='"+h+"' color='"+W+"'><![CDATA["+j[Z].childNodes[2].innerHTML+"]]></body>"}else{var W=F?E(j[Z],"color"):"";var h=F?E(j[Z],"backgroundColor"):"";b+="<body backgroundColor='"+h+"' color='"+W+"'><![CDATA["+j[Z].innerHTML+"]]></body>"}b+="</event>"}}}return b}function K(){var T="</data>";return T}var D=(new Date()).valueOf();var R=document.createElement("div");R.style.display="none";document.body.appendChild(R);R.innerHTML='<form id="'+D+'" method="post" target="_blank" action="'+C+'" accept-charset="utf-8" enctype="text/html"><input type="hidden" name="mycoolxmlbody"/> </form>';document.getElementById(D).firstChild.value=S(J).replace("\u2013","-")+B()+K();document.getElementById(D).submit();R.parentNode.removeChild(R);grid=null};

View File

@ -0,0 +1,9 @@
/*
dhtmlxScheduler v.2.3
This software is allowed to use under GPL or you need to obtain Commercial or Enterise License
to use it in not GPL project. Please contact sales@dhtmlx.com for details
(c) DHTMLX Ltd.
*/
scheduler.attachEvent("onTemplatesReady",function(){scheduler.attachEvent("onBeforeLightbox",function(F){if(this.config.readonly_form||this.getEvent(F).readonly){this.config.readonly_active=true}else{this.config.readonly_active=false;return true}for(var E=0;E<this.config.lightbox.sections.length;E++){this.config.lightbox.sections[E].focus=false}return true});function D(E,K,L,J){var G=K.getElementsByTagName(E);var F=L.getElementsByTagName(E);for(var I=F.length-1;I>=0;I--){var L=F[I];if(!J){L.disabled=true}else{var H=document.createElement("SPAN");H.className="dhx_text_disabled";H.innerHTML=J(G[I]);L.parentNode.insertBefore(H,L);L.parentNode.removeChild(L)}}}var B=scheduler._fill_lightbox;scheduler._fill_lightbox=function(){var H=this.config.lightbox.sections;if(this.config.readonly_active){for(var F=0;F<H.length;F++){if(H[F].type=="recurring"){var G=document.getElementById(H[F].id);G.style.display=G.nextSibling.style.display="none";H.splice(F,1);F--}}}var E=B.apply(this,arguments);if(this.config.readonly_active){var I=this._get_lightbox();var J=this._lightbox_r=I.cloneNode(true);D("textarea",I,J,function(K){return K.value});D("input",I,J,false);D("select",I,J,function(K){return K.options[Math.max((K.selectedIndex||0),0)].text});J.removeChild(J.childNodes[2]);J.removeChild(J.childNodes[3]);I.parentNode.insertBefore(J,I);A.call(this,J);this._lightbox=J;this.setLightboxSize();this._lightbox=null;J.onclick=function(K){var L=K?K.target:event.srcElement;if(!L.className){L=L.previousSibling}if(L&&L.className){switch(L.className){case"dhx_cancel_btn":scheduler.callEvent("onEventCancel",[scheduler._lightbox_id]);scheduler._edit_stop_event(scheduler.getEvent(scheduler._lightbox_id),false);scheduler.hide_lightbox();break}}}}return E};var A=scheduler.showCover;scheduler.showCover=function(){if(!this.config.readonly_active){A.apply(this,arguments)}};var C=scheduler.hide_lightbox;scheduler.hide_lightbox=function(){if(this._lightbox_r){this._lightbox_r.parentNode.removeChild(this._lightbox_r);this._lightbox_r=null}return C.apply(this,arguments)}});

View File

@ -0,0 +1,9 @@
/*
dhtmlxScheduler v.2.3
This software is allowed to use under GPL or you need to obtain Commercial or Enterise License
to use it in not GPL project. Please contact sales@dhtmlx.com for details
(c) DHTMLX Ltd.
*/
div input.radio{margin:-4px 0 0 -4px!ie;}div input.checkbox{margin:0 0 0 -4px!ie;}.dhx_form_repeat,.dhx_form_repeat input{padding:0;margin:0;font-family:Tahoma,Verdana;font-size:11px;line-height:24px;}.dhx_form_repeat{overflow:hidden;height:0;background-color:#FFF4B5;}.dhx_repeat_center,.dhx_repeat_left{height:115px;padding:10px 0 10px 10px;float:left;}.dhx_repeat_left{width:95px;}.dhx_repeat_center{width:335px;margin-top:12px;}.dhx_repeat_divider{float:left;height:115px;border-left:1px dotted #DCC43E;width:1px;}.dhx_repeat_right{float:right;height:115px;width:160px;padding:10px 3px 10px 10px;margin-top:7px;}input.dhx_repeat_text{height:16px;width:27px;margin:0 4px 0 4px;line-height:18px;padding:0 0 0 2px;}.dhx_form_repeat select{height:20px;width:87px;padding:0 0 0 2px;margin:0 4px 0 4px;}input.dhx_repeat_date{height:18px;width:80px;padding:0 0 0 2px;margin:0 4px 0 4px;background-repeat:no-repeat;background-position:64px 0;border:1px #7f9db9 solid;line-height:18px;}input.dhx_repeat_radio{margin-right:4px;}input.dhx_repeat_checkbox{margin:4px 4px 0 0;}.dhx_repeat_days td{padding-right:5px;}.dhx_repeat_days label{font-size:10px;}.dhx_custom_button_recurring{background-image:url(../imgs/but_repeat.gif);background-position:-5px 20px;width:20px;margin-right:10px;}.dhx_custom_button{width:90px;}.dhx_cal_light{width:640px;}.dhx_cal_larea{width:632px;}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,9 @@
/*
dhtmlxScheduler v.2.3
This software is allowed to use under GPL or you need to obtain Commercial or Enterise License
to use it in not GPL project. Please contact sales@dhtmlx.com for details
(c) DHTMLX Ltd.
*/
scheduler.data_attributes=function(){var C=[];var E=scheduler.templates.xml_format;for(var A in this._events){var D=this._events[A];for(var B in D){if(B.substr(0,1)!="_"){C.push([B,((B=="start_date"||B=="end_date")?E:null)])}}break}return C};scheduler.toXML=function(F){var C=[];var B=this.data_attributes();for(var A in this._events){var E=this._events[A];if(E.id.toString().indexOf("#")!=-1){continue}C.push("<event>");for(var D=0;D<B.length;D++){C.push("<"+B[D][0]+"><![CDATA["+(B[D][1]?B[D][1](E[B[D][0]]):E[B[D][0]])+"]]></"+B[D][0]+">")}C.push("</event>")}return(F||"")+"<data>"+C.join("\n")+"</data>"};scheduler.toJSON=function(){var E=[];var C=this.data_attributes();for(var B in this._events){var F=this._events[B];if(F.id.toString().indexOf("#")!=-1){continue}var F=this._events[B];var A=[];for(var D=0;D<C.length;D++){A.push(" "+C[D][0]+':"'+((C[D][1]?C[D][1](F[C[D][0]]):F[C[D][0]])||"").toString().replace(/\n/g,"")+'" ')}E.push("{"+A.join(",")+"}")}return"["+E.join(",\n")+"]"};scheduler.toICal=function(G){var F="BEGIN:VCALENDAR\nVERSION:2.0\nPRODID:-//dhtmlXScheduler//NONSGML v2.2//EN\nDESCRIPTION:";var C="END:VCALENDAR";var E=scheduler.date.date_to_str("%Y%m%dT%H%i%s");var B=[];for(var A in this._events){var D=this._events[A];if(D.id.toString().indexOf("#")!=-1){continue}B.push("BEGIN:VEVENT");B.push("DTSTART:"+E(D.start_date));B.push("DTEND:"+E(D.end_date));B.push("SUMMARY:"+D.text);B.push("END:VEVENT")}return F+(G||"")+"\n"+B.join("\n")+"\n"+C};

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
window.dhtmlXTooltip={version:0.1};dhtmlXTooltip.config={className:"dhtmlXTooltip tooltip",timeout_to_display:50,delta_x:15,delta_y:-20};dhtmlXTooltip.tooltip=document.createElement("div");dhtmlXTooltip.tooltip.className=dhtmlXTooltip.config.className;dhtmlXTooltip.show=function(D,G){dhtmlXTooltip.tooltip.className=dhtmlXTooltip.config.className;var H=this.position(D);var E=D.target||D.srcElement;if(this.isTooltip(E)){return }var C=H.x+dhtmlXTooltip.config.delta_x||0;var B=H.y-dhtmlXTooltip.config.delta_y||0;this.tooltip.style.visibility="hidden";if(this.tooltip.style.removeAttribute){this.tooltip.style.removeAttribute("right");this.tooltip.style.removeAttribute("bottom")}else{this.tooltip.style.removeProperty("right");this.tooltip.style.removeProperty("bottom")}this.tooltip.style.left="0px";this.tooltip.style.top="0px";this.tooltip.innerHTML=G;scheduler._obj.appendChild(this.tooltip);var A=this.tooltip.offsetWidth;var F=this.tooltip.offsetHeight;if(document.body.offsetWidth-C-A<0){if(this.tooltip.style.removeAttribute){this.tooltip.style.removeAttribute("left")}else{this.tooltip.style.removeProperty("left")}this.tooltip.style.right=(document.body.offsetWidth-C+2*dhtmlXTooltip.config.delta_x||0)+"px"}else{if(C<0){this.tooltip.style.left=(H.x+Math.abs(dhtmlXTooltip.config.delta_x||0))+"px"}else{this.tooltip.style.left=C+"px"}}if(document.body.offsetHeight-B-F<0){if(this.tooltip.style.removeAttribute){this.tooltip.style.removeAttribute("top")}else{this.tooltip.style.removeProperty("top")}this.tooltip.style.bottom=(document.body.offsetHeight-B-2*dhtmlXTooltip.config.delta_y||0)+"px"}else{if(B<0){this.tooltip.style.top=(H.y+Math.abs(dhtmlXTooltip.config.delta_y||0))+"px"}else{this.tooltip.style.top=B+"px"}}this.tooltip.style.visibility="visible"};dhtmlXTooltip.hide=function(){if(this.tooltip.parentNode){this.tooltip.parentNode.removeChild(this.tooltip)}};dhtmlXTooltip.delay=function(D,B,C,A){if(this.tooltip._timeout_id){window.clearTimeout(this.tooltip._timeout_id)}this.tooltip._timeout_id=setTimeout(function(){var E=D.apply(B,C);D=obj=C=null;return E},A||this.config.timeout_to_display)};dhtmlXTooltip.isTooltip=function(B){var A=false;while(B&&!A){A=(B.className==this.tooltip.className);B=B.parentNode}return A};dhtmlXTooltip.position=function(A){var A=A||window.event;if(A.pageX||A.pageY){return{x:A.pageX,y:A.pageY}}var B=((dhtmlx._isIE)&&(document.compatMode!="BackCompat"))?document.documentElement:document.body;return{x:A.clientX+B.scrollLeft-B.clientLeft,y:A.clientY+B.scrollTop-B.clientTop}};scheduler.attachEvent("onMouseMove",function(D,F){var C=F||window.event;var E=C.target||C.srcElement;if(D||dhtmlXTooltip.isTooltip(E)){var B=scheduler.getEvent(D)||scheduler.getEvent(dhtmlXTooltip.tooltip.event_id);dhtmlXTooltip.tooltip.event_id=B.id;var G=scheduler.templates.tooltip_text(B.start_date,B.end_date,B);if(_isIE){var A=document.createEventObject(C)}dhtmlXTooltip.delay(dhtmlXTooltip.show,dhtmlXTooltip,[A||C,G])}else{dhtmlXTooltip.delay(dhtmlXTooltip.hide,dhtmlXTooltip,[])}});scheduler.templates.tooltip_text=function(C,A,B){return"<b>Event:</b> "+B.text+"<br/><b>Start date:</b> "+scheduler.templates.tooltip_date_format(C)+"<br/><b>End date:</b> "+scheduler.templates.tooltip_date_format(A)};

View File

@ -0,0 +1,9 @@
/*
dhtmlxScheduler v.2.3
This software is allowed to use under GPL or you need to obtain Commercial or Enterise License
to use it in not GPL project. Please contact sales@dhtmlx.com for details
(c) DHTMLX Ltd.
*/
.dhx_cal_prev_button,.dhx_cal_next_button,.dhx_cal_today_button,.dhx_cal_add_button{top:6px!important;left:10px;border:1px solid #575D65;border-top:1px solid #4E5052;color:#FFF;text-shadow:0 -1px 0 #65696E;background-image:-webkit-gradient(linear,left top,left bottom,from(#B2B6BC),to(#6B737E));background-color:#989B9F;background-position:0 1px;background-repeat:repeat-x;-webkit-border-radius:5px;padding:3px;text-align:center;text-decoration:none;}.dhx_cal_today_button{left:55px;}.dhx_cal_next_button{left:146px;}.dhx_cal_add_button{right:9px;left:auto;width:20px;font-size:20px;padding:1px 2px 2px 2px;}.dhx_cal_navline .dhx_cal_date{top:7px;left:160px;right:350px;padding-top:4px;width:auto;text-align:center;color:#4F5459;}.dhx_cal_navline{background:-webkit-gradient(linear,0% 0,0% 100%,color-stop(0,#F4F5F8),color-stop(0.3,#F1F2F4),color-stop(0.7,#C4C7D0),color-stop(1,#A6AAB7));border-bottom:1px solid #797F90;height:40px!important;font-family:Helvetica;font-weight:bold;font-size:13px;}.dhx_cal_tab{top:6px!important;color:#4F5459;text-align:center;padding:5px 10px;width:80px;background-image:-webkit-gradient(linear,0% 0,0% 100%,from(#F7F7F7),to(#B9BDC7));background-color:#CFD0D1;background-position:0 1px;background-repeat:repeat-x;text-decoration:none;border:1px solid #95989F;border-top:1px solid #686A6A;height:16px;}.dhx_cal_tab.active{background-image:-webkit-gradient(linear,0% 0,0% 100%,from(#B0B2B6),to(#666D74));background-color:#949799;background-position:0 1px;background-repeat:repeat-x;border:1px solid #4C4D4F;border-top:1px solid #52585C;color:#F8F8F8;text-shadow:0 -1px 0 #5E6063;text-decoration:none;height:16px;padding:5px 10px;z-index:100;}.dhx_cal_light{-webkit-transition:-webkit-transform;-webkit-transform-style:preserve-3d;}.dhx_cal_cover{opacity:.5;}.dhx_cal_ltext{padding-top:0;padding-bottom:0;}.dhx_cal_ltext textarea{-webkit-background-size:0;-webkit-border-radius:0;height:94%;}.dhx_mini_calendar .dhx_month_head{height:35px;line-height:35px;text-align:center;padding-right:0;padding-left:0;}.dhx_mini_calendar .dhx_year_month{height:35px;line-height:30px;background:-webkit-gradient(linear,0% 0,0% 100%,from(#F4F5F8),to(#8A8E9A));font-family:Helvetica;font-weight:bold;font-size:13px;}.dhx_mini_calendar .dhx_year_month .dhx_cal_prev_button,.dhx_mini_calendar .dhx_year_month .dhx_cal_next_button{line-height:normal;}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,9 @@
/*
dhtmlxScheduler v.2.3
This software is allowed to use under GPL or you need to obtain Commercial or Enterise License
to use it in not GPL project. Please contact sales@dhtmlx.com for details
(c) DHTMLX Ltd.
*/
scheduler._props={};scheduler.createUnitsView=function(A,E,D,B,C){if(typeof A=="object"){D=A.list;E=A.property;B=A.size||0;C=A.step||1;A=A.name}scheduler.date[A+"_start"]=scheduler.date.day_start;scheduler.templates[A+"_date"]=function(F){return scheduler.templates.day_date(F)};scheduler.templates[A+"_scale_date"]=function(G){if(!D.length){return""}var F=(scheduler._props[A].position||0)+Math.floor((scheduler._correct_shift(G.valueOf(),1)-scheduler._min_date.valueOf())/(60*60*24*1000));if(D[F].css){return"<span class='"+D[F].css+"'>"+D[F].label+"</span>"}else{return D[F].label}};scheduler.date["add_"+A]=function(F,G){return scheduler.date.add(F,G,"day")};scheduler.date["get_"+A+"_end"]=function(F){return scheduler.date.add(F,B||D.length,"day")};scheduler._props[A]={map_to:E,options:D,size:B,step:C,position:0};scheduler.attachEvent("onOptionsLoad",function(){var F=scheduler._props[A].order={};for(var G=0;G<D.length;G++){F[D[G].key]=G}if(scheduler._date){scheduler.setCurrentView(scheduler._date,scheduler._mode)}});scheduler.callEvent("onOptionsLoad",[])};scheduler.scrollUnit=function(A){var B=scheduler._props[this._mode];if(B){B.position=Math.min(Math.max(0,B.position+A),B.options.length-B.size);this.update_view()}};(function(){var D=function(L,J){if(L&&typeof L.order[J[L.map_to]]=="undefined"){var I=scheduler;var H=24*60*60*1000;var K=Math.floor((J.end_date-I._min_date)/H);J[L.map_to]=L.options[Math.min(K+L.position,L.options.length-1)].key;return true}};var B=scheduler._reset_scale;var F=scheduler.is_visible_events;scheduler.is_visible_events=function(I){var H=F.apply(this,arguments);if(H){var K=scheduler._props[this._mode];if(K&&K.size){var J=K.order[I[K.map_to]];if(J<K.position||J>=K.size+K.position){return false}}}return H};scheduler._reset_scale=function(){var M=scheduler._props[this._mode];var H=B.apply(this,arguments);if(M){this._max_date=this.date.add(this._min_date,1,"day");var L=this._els.dhx_cal_data[0].childNodes;for(var I=0;I<L.length;I++){L[I].className=L[I].className.replace("_now","")}if(M.size&&M.size<M.options.length){var J=this._els.dhx_cal_header[0];var K=document.createElement("DIV");if(M.position){K.className="dhx_cal_prev_button";K.style.cssText="left:1px;top:2px;position:absolute;";K.innerHTML="&nbsp;";J.firstChild.appendChild(K);K.onclick=function(){scheduler.scrollUnit(M.step*-1)}}if(M.position+M.size<M.options.length){K=document.createElement("DIV");K.className="dhx_cal_next_button";K.style.cssText="left:auto; right:0px;top:2px;position:absolute;";K.innerHTML="&nbsp;";J.lastChild.appendChild(K);K.onclick=function(){scheduler.scrollUnit(M.step)}}}}return H};var C=scheduler._get_event_sday;scheduler._get_event_sday=function(H){var I=scheduler._props[this._mode];if(I){D(I,H);return I.order[H[I.map_to]]-I.position}return C.call(this,H)};var A=scheduler.locate_holder_day;scheduler.locate_holder_day=function(I,H,J){var K=scheduler._props[this._mode];if(K){D(K,J);return K.order[J[K.map_to]]*1+(H?1:0)-K.position}return A.apply(this,arguments)};var E=scheduler._mouse_coords;scheduler._mouse_coords=function(){var K=scheduler._props[this._mode];var J=E.apply(this,arguments);if(K){var H=this._drag_event;if(this._drag_id){H=this.getEvent(this._drag_id);this._drag_event._dhx_changed=true}var I=Math.min(J.x+K.position,K.options.length-1);H[K.map_to]=K.options[I].key;J.x=I/10000000}return J};var G=scheduler._time_order;scheduler._time_order=function(H){var I=scheduler._props[this._mode];if(I){H.sort(function(K,J){return I.order[K[I.map_to]]>I.order[J[I.map_to]]?1:-1})}else{G.apply(this,arguments)}};scheduler.attachEvent("onEventAdded",function(K,I){if(this._loading){return true}for(var H in scheduler._props){var J=scheduler._props[H];if(typeof I[J.map_to]=="undefined"){I[J.map_to]=J.options[0].key}}return true});scheduler.attachEvent("onEventCreated",function(K,H){var J=scheduler._props[this._mode];if(J){var I=this.getEvent(K);this._mouse_coords(H);D(J,I);this.event_updated(I)}return true})})();

View File

@ -0,0 +1,9 @@
/*
dhtmlxScheduler v.2.3
This software is allowed to use under GPL or you need to obtain Commercial or Enterise License
to use it in not GPL project. Please contact sales@dhtmlx.com for details
(c) DHTMLX Ltd.
*/
scheduler.attachEvent("onTemplatesReady",function(){var C=true;var A=scheduler.date.str_to_date("%Y-%m-%d");var B=scheduler.date.date_to_str("%Y-%m-%d");scheduler.attachEvent("onBeforeViewChange",function(K,D,F,J){if(C){C=false;var E={};var G=(document.location.hash||"").replace("#","").split(",");for(var H=0;H<G.length;H++){var M=G[H].split("=");if(M.length==2){E[M[0]]=M[1]}}if(E.date||E.mode){try{this.setCurrentView((E.date?A(E.date):null),(E.mode||null))}catch(I){this.setCurrentView((E.date?A(E.date):null),F)}return false}}var L="#date="+B(J||D)+",mode="+(F||K);document.location.hash=L;return true})});

File diff suppressed because one or more lines are too long

Binary file not shown.

After

Width:  |  Height:  |  Size: 180 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 281 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 622 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 388 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 452 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 152 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 152 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 230 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 366 B

View File

@ -0,0 +1,7 @@
dhtmlxScheduler v.2.3
This software is allowed to use under GPL or you need to obtain Commercial or Enterise License
to use it in not GPL project. Please contact sales@dhtmlx.com for details
(c) DHTMLX Ltd.

View File

@ -0,0 +1,133 @@
scheduler.date={
date_part:function(date){
date.setHours(0);
date.setMinutes(0);
date.setSeconds(0);
date.setMilliseconds(0);
return date;
},
time_part:function(date){
return (date.valueOf()/1000 - date.getTimezoneOffset()*60)%86400;
},
week_start:function(date){
var shift=date.getDay();
if (scheduler.config.start_on_monday){
if (shift==0) shift=6
else shift--;
}
return this.date_part(this.add(date,-1*shift,"day"));
},
month_start:function(date){
date.setDate(1);
return this.date_part(date);
},
year_start:function(date){
date.setMonth(0);
return this.month_start(date);
},
day_start:function(date){
return this.date_part(date);
},
add:function(date,inc,mode){
var ndate=new Date(date.valueOf());
switch(mode){
case "day": ndate.setDate(ndate.getDate()+inc); break;
case "week": ndate.setDate(ndate.getDate()+7*inc); break;
case "month": ndate.setMonth(ndate.getMonth()+inc); break;
case "year": ndate.setYear(ndate.getFullYear()+inc); break;
case "hour": ndate.setHours(ndate.getHours()+inc); break;
case "minute": ndate.setMinutes(ndate.getMinutes()+inc); break;
default:
return scheduler.date["add_"+mode](date,inc,mode);
}
return ndate;
},
to_fixed:function(num){
if (num<10) return "0"+num;
return num;
},
copy:function(date){
return new Date(date.valueOf());
},
date_to_str:function(format,utc){
format=format.replace(/%[a-zA-Z]/g,function(a){
switch(a){
case "%d": return "\"+scheduler.date.to_fixed(date.getDate())+\"";
case "%m": return "\"+scheduler.date.to_fixed((date.getMonth()+1))+\"";
case "%j": return "\"+date.getDate()+\"";
case "%n": return "\"+(date.getMonth()+1)+\"";
case "%y": return "\"+scheduler.date.to_fixed(date.getFullYear()%100)+\"";
case "%Y": return "\"+date.getFullYear()+\"";
case "%D": return "\"+scheduler.locale.date.day_short[date.getDay()]+\"";
case "%l": return "\"+scheduler.locale.date.day_full[date.getDay()]+\"";
case "%M": return "\"+scheduler.locale.date.month_short[date.getMonth()]+\"";
case "%F": return "\"+scheduler.locale.date.month_full[date.getMonth()]+\"";
case "%h": return "\"+scheduler.date.to_fixed((date.getHours()+11)%12+1)+\"";
case "%g": return "\"+((date.getHours()+11)%12+1)+\"";
case "%G": return "\"+date.getHours()+\"";
case "%H": return "\"+scheduler.date.to_fixed(date.getHours())+\"";
case "%i": return "\"+scheduler.date.to_fixed(date.getMinutes())+\"";
case "%a": return "\"+(date.getHours()>11?\"pm\":\"am\")+\"";
case "%A": return "\"+(date.getHours()>11?\"PM\":\"AM\")+\"";
case "%s": return "\"+scheduler.date.to_fixed(date.getSeconds())+\"";
case "%W": return "\"+scheduler.date.to_fixed(scheduler.date.getISOWeek(date))+\"";
default: return a;
}
})
if (utc) format=format.replace(/date\.get/g,"date.getUTC");
return new Function("date","return \""+format+"\";");
},
str_to_date:function(format,utc){
var splt="var temp=date.split(/[^0-9a-zA-Z]+/g);";
var mask=format.match(/%[a-zA-Z]/g);
for (var i=0; i<mask.length; i++){
switch(mask[i]){
case "%j":
case "%d": splt+="set[2]=temp["+i+"]||1;";
break;
case "%n":
case "%m": splt+="set[1]=(temp["+i+"]||1)-1;";
break;
case "%y": splt+="set[0]=temp["+i+"]*1+(temp["+i+"]>50?1900:2000);";
break;
case "%g":
case "%G":
case "%h":
case "%H":
splt+="set[3]=temp["+i+"]||0;";
break;
case "%i":
splt+="set[4]=temp["+i+"]||0;";
break;
case "%Y": splt+="set[0]=temp["+i+"]||0;";
break;
case "%a":
case "%A": splt+="set[3]=set[3]%12+((temp["+i+"]||'').toLowerCase()=='am'?0:12);";
break;
case "%s": splt+="set[5]=temp["+i+"]||0;";
break;
}
}
var code ="set[0],set[1],set[2],set[3],set[4],set[5]";
if (utc) code =" Date.UTC("+code+")";
return new Function("date","var set=[0,0,1,0,0,0]; "+splt+" return new Date("+code+");");
},
getISOWeek: function(ndate) {
if(!ndate) return false;
var nday = ndate.getDay();
if (nday == 0) {
nday = 7;
}
var first_thursday = new Date(ndate.valueOf());
first_thursday.setDate(ndate.getDate() + (4 - nday));
var year_number = first_thursday.getFullYear(); // year of the first Thursday
var ordinal_date = Math.floor( (first_thursday.getTime() - new Date(year_number, 0, 1).getTime()) / 86400000); //ordinal date of the first Thursday - 1 (so not really ordinal date)
var week_number = 1 + Math.floor( ordinal_date / 7);
return week_number;
},
getUTCISOWeek: function(ndate){
return this.getISOWeek(ndate);
}
}

View File

@ -0,0 +1,106 @@
.dhx_cal_ltext{
text-align:left;
}
.dhx_agenda_line {
overflow:hidden;
white-space:nowrap;
}
.dhx_cal_light select{
width:auto;
}
.dhx_custom_button {
width:120px !important;
}
.dhx_cal_ltext{
text-align:left;
}
.dhx_form_repeat{
text-align:left;
width:100%;
}
.dhx_cal_lsection {
text-align:left;
}
.dhx_month_head{
font-size:8pt;
}
.dhx_expand_icon {
position:absolute; top:0px; right:2px;
background-image:url(./imgs/colapce-expand-icon.gif);
width:18px; height:18px;
cursor:pointer;
background-position:0px 18px;
z-index:16;
}
div.dhx_cal_container table tr td {
border-width:0 !important;
padding:0 !important;
}
.dhx_cal_container table {
border-collapse:separate !important;
margin:0 0 !important;
}
.dhx_cal_container{
z-index:999;
}
div.dhx_cal_event_clear, div.dhx_cal_event{
line-height:100%;
}
.dhx_cal_ltext textarea {
-moz-box-shadow:none;
border-width:0;
padding:0;
background:transparent none repeat scroll 0 0;
-webkit-box-shadow:none;
}
.dhx_cal_light{
text-align:left;
}
.dhx_cal_light div, .dhx_cal_container div{
line-height:normal;
}
.dhx_cal_light .dhx_form_repeat div,.dhx_cal_light .dhx_form_repeat{
line-height:24px;
}
/* anti-joomla */
div.dhx_cal_navline div, .dhx_scale_bar, .dhx_scale_hour, .dhx_title{
text-align:center !important;
}
#whitebox div .dhx_month_head {
text-align:right;
}
#whitebox div .dhx_cal_event_line, #whitebox div .dhx_body{
text-align:left;
}
div.dhx_cal_container, div.dhx_cal_lsection{
line-height:1em;
}
div.dhx_cal_container, div.dhx_cal_lsection{
line-height:normal;
}
.dhx_cal_header .dhx_agenda_line div, .dhx_year_month{
text-align:center !important;
}
.dhx_tooltip{
text-align:left;
}
.dhx_cal_data table{
border-width:0px !important;
}
.dhx_cal_data table tr td{
border-top-width:0px !important;
}

View File

@ -0,0 +1,105 @@
/*
%e Day of the month without leading zeros (01..31)
%d Day of the month, 2 digits with leading zeros (01..31)
%j Day of the year, 3 digits with leading zeros (001..366)
%a A textual representation of a day, two letters
%W A full textual representation of the day of the week
%c Numeric representation of a month, without leading zeros (0..12)
%m Numeric representation of a month, with leading zeros (00..12)
%b A short textual representation of a month, three letters (Jan..Dec)
%M A full textual representation of a month, such as January or March (January..December)
%y A two digit representation of a year (93..03)
%Y A full numeric representation of a year, 4 digits (1993..03)
*/
scheduler.config={
default_date: "%j %M %Y",
month_date: "%F %Y",
load_date: "%Y-%m-%d",
week_date: "%l",
day_date: "%D, %F %j",
hour_date: "%H:%i",
month_day : "%d",
xml_date:"%m/%d/%Y %H:%i",
api_date:"%d-%m-%Y %H:%i",
hour_size_px:42,
time_step:5,
start_on_monday:1,
first_hour:0,
last_hour:24,
readonly:false,
drag_resize:1,
drag_move:1,
drag_create:1,
dblclick_create:1,
edit_on_create:1,
details_on_create:0,
click_form_details:0,
server_utc:false,
positive_closing:false,
icons_edit:["icon_save","icon_cancel"],
icons_select:["icon_details","icon_edit","icon_delete"],
lightbox:{
sections:[ {name:"description", height:200, map_to:"text", type:"textarea" , focus:true},
{name:"time", height:72, type:"time", map_to:"auto"} ]
}
};
scheduler.templates={}
scheduler.init_templates=function(){
var d=scheduler.date.date_to_str;
var c=scheduler.config;
var f = function(a,b){
for (var c in b)
if (!a[c]) a[c]=b[c];
}
f(scheduler.templates,{
day_date:d(c.default_date),
month_date:d(c.month_date),
week_date:function(d1,d2){
return scheduler.templates.day_date(d1)+" &ndash; "+scheduler.templates.day_date(scheduler.date.add(d2,-1,"day"));
},
day_scale_date:d(c.default_date),
month_scale_date:d(c.week_date),
week_scale_date:d(c.day_date),
hour_scale:d(c.hour_date),
time_picker:d(c.hour_date),
event_date:d(c.hour_date),
month_day:d(c.month_day),
xml_date:scheduler.date.str_to_date(c.xml_date,c.server_utc),
load_format:d(c.load_date,c.server_utc),
xml_format:d(c.xml_date,c.server_utc),
api_date:scheduler.date.str_to_date(c.api_date),
event_header:function(start,end,ev){
return scheduler.templates.event_date(start)+" - "+scheduler.templates.event_date(end);
},
event_text:function(start,end,ev){
return ev.text;
},
event_class:function(start,end,ev){
return "";
},
month_date_class:function(d){
return "";
},
week_date_class:function(d){
return "";
},
event_bar_date:function(start,end,ev){
return scheduler.templates.event_date(start)+" ";
},
event_bar_text:function(start,end,ev){
return ev.text;
}
});
this.callEvent("onTemplatesReady",[])
}

View File

@ -0,0 +1,137 @@
/*
dhx_sort[index]=direction
dhx_filter[index]=mask
*/
if (window.dhtmlXGridObject){
dhtmlXGridObject.prototype._init_point_connector=dhtmlXGridObject.prototype._init_point;
dhtmlXGridObject.prototype._init_point=function(){
var clear_url=function(url){
url=url.replace(/(\?|\&)connector[^\f]*/g,"");
return url+(url.indexOf("?")!=-1?"&":"?")+"connector=true"+(mygrid.hdr.rows.length > 0 ? "&dhx_no_header=1":"");
};
var combine_urls=function(url){
return clear_url(url)+(this._connector_sorting||"")+(this._connector_filter||"");
};
var sorting_url=function(url,ind,dir){
this._connector_sorting="&dhx_sort["+ind+"]="+dir;
return combine_urls.call(this,url);
};
var filtering_url=function(url,inds,vals){
for (var i=0; i<inds.length; i++)
inds[i]="dhx_filter["+inds[i]+"]="+encodeURIComponent(vals[i]);
this._connector_filter="&"+inds.join("&");
return combine_urls.call(this,url);
};
this.attachEvent("onCollectValues",function(ind){
if (this._con_f_used[ind]){
if (typeof(this._con_f_used[ind]) == "object")
return this._con_f_used[ind];
else
return false;
}
return true;
});
this.attachEvent("onDynXLS",function(){
this.xmlFileUrl=combine_urls.call(this,this.xmlFileUrl);
return true;
});
this.attachEvent("onBeforeSorting",function(ind,type,dir){
if (type=="connector"){
var self=this;
this.clearAndLoad(sorting_url.call(this,this.xmlFileUrl,ind,dir),function(){
self.setSortImgState(true,ind,dir);
});
return false;
}
return true;
});
this.attachEvent("onFilterStart",function(a,b){
if (this._con_f_used.length){
this.clearAndLoad(filtering_url.call(this,this.xmlFileUrl,a,b));
return false;
}
return true;
});
this.attachEvent("onXLE",function(a,b,c,xml){
if (!xml) return;
});
if (this._init_point_connector) this._init_point_connector();
};
dhtmlXGridObject.prototype._con_f_used=[];
dhtmlXGridObject.prototype._in_header_connector_text_filter=function(t,i){
if (!this._con_f_used[i])
this._con_f_used[i]=1;
return this._in_header_text_filter(t,i);
};
dhtmlXGridObject.prototype._in_header_connector_select_filter=function(t,i){
if (!this._con_f_used[i])
this._con_f_used[i]=2;
return this._in_header_select_filter(t,i);
};
dhtmlXGridObject.prototype.load_connector=dhtmlXGridObject.prototype.load;
dhtmlXGridObject.prototype.load=function(url, call, type){
if (!this._colls_loaded && this.cellType){
var ar=[];
for (var i=0; i < this.cellType.length; i++)
if (this.cellType[i].indexOf("co")==0 || this._con_f_used[i]==2) ar.push(i);
if (ar.length)
arguments[0]+=(arguments[0].indexOf("?")!=-1?"&":"?")+"connector=true&dhx_colls="+ar.join(",");
}
return this.load_connector.apply(this,arguments);
};
dhtmlXGridObject.prototype._parseHead_connector=dhtmlXGridObject.prototype._parseHead;
dhtmlXGridObject.prototype._parseHead=function(url, call, type){
this._parseHead_connector.apply(this,arguments);
if (!this._colls_loaded){
var cols = this.xmlLoader.doXPath("./coll_options", arguments[0]);
for (var i=0; i < cols.length; i++){
var f = cols[i].getAttribute("for");
var v = [];
var combo=null;
if (this.cellType[f] == "combo")
combo = this.getColumnCombo(f);
if (this.cellType[f].indexOf("co")==0)
combo=this.getCombo(f);
var os = this.xmlLoader.doXPath("./item",cols[i]);
for (var j=0; j<os.length; j++){
var val=os[j].getAttribute("value");
if (combo){
var lab=os[j].getAttribute("label")||val;
if (combo.addOption)
combo.addOption([[val, lab]]);
else
combo.put(val,lab);
v[v.length]=lab;
} else
v[v.length]=val;
}
if (this._con_f_used[f*1])
this._con_f_used[f*1]=v;
};
this._colls_loaded=true;
}
};
}
if (window.dataProcessor){
dataProcessor.prototype.init_original=dataProcessor.prototype.init;
dataProcessor.prototype.init=function(obj){
this.init_original(obj);
obj._dataprocessor=this;
this.setTransactionMode("POST",true);
this.serverProcessor+=(this.serverProcessor.indexOf("?")!=-1?"&":"?")+"editing=true";
};
};
dhtmlxError.catchError("LoadXML",function(a,b,c){
alert(c[0].responseText);
});

View File

@ -0,0 +1,78 @@
scheduler._dp_init=function(dp){
dp._methods=["setEventTextStyle","","changeEventId","deleteEvent"];
this.attachEvent("onEventAdded",function(id){
if (!this._loading && this.validId(id))
dp.setUpdated(id,true,"inserted");
});
this.attachEvent("onBeforeEventDelete",function(id){
if (!this.validId(id)) return;
var z=dp.getState(id);
if (z=="inserted" || this._new_event) { dp.setUpdated(id,false); return true; }
if (z=="deleted") return false;
if (z=="true_deleted") return true;
dp.setUpdated(id,true,"deleted");
return false;
});
this.attachEvent("onEventChanged",function(id){
if (!this._loading && this.validId(id))
dp.setUpdated(id,true,"updated");
});
dp._getRowData=function(id,pref){
var ev=this.obj.getEvent(id);
var data = {};
for (var a in ev){
if (a.indexOf("_")==0) continue;
if (ev[a] && ev[a].getUTCFullYear) //not very good, but will work
data[a] = this.obj.templates.xml_format(ev[a]);
else
data[a] = ev[a];
}
return data;
};
dp._clearUpdateFlag=function(){};
dp.attachEvent("insertCallback", scheduler._update_callback);
dp.attachEvent("updateCallback", scheduler._update_callback);
dp.attachEvent("deleteCallback", function(upd, id) {
this.obj.setUserData(id, this.action_param, "true_deleted");
this.obj.deleteEvent(id);
});
};
scheduler.setUserData=function(id,name,value){
if (id)
this.getEvent(id)[name]=value;
else
this._userdata[name]=value;
};
scheduler.getUserData=function(id,name){
return id?this.getEvent(id)[name]:this._userdata[name];
};
scheduler.setEventTextStyle=function(id,style){
this.for_rendered(id,function(r){
r.style.cssText+=";"+style;
});
var ev = this.getEvent(id);
ev["_text_style"]=style;
this.event_updated(ev);
};
scheduler.validId=function(id){
return true;
};
scheduler._update_callback = function(upd,id){
var data = scheduler.xmlNodeToJSON(upd.firstChild);
data.text = data.text||data._tagvalue;
data.start_date = scheduler.templates.xml_date(data.start_date);
data.end_date = scheduler.templates.xml_date(data.end_date);
scheduler.addEvent(data);
};

View File

@ -0,0 +1,901 @@
dhtmlx=function(obj){
for (var a in obj) dhtmlx[a]=obj[a];
return dhtmlx; //simple singleton
};
dhtmlx.extend_api=function(name,map,ext){
var t = window[name];
if (!t) return; //component not defined
window[name]=function(obj){
if (obj && typeof obj == "object" && !obj.tagName && !(obj instanceof Array)){
var that = t.apply(this,(map._init?map._init(obj):arguments));
//global settings
for (var a in dhtmlx)
if (map[a]) this[map[a]](dhtmlx[a]);
//local settings
for (var a in obj){
if (map[a]) this[map[a]](obj[a]);
else if (a.indexOf("on")==0){
this.attachEvent(a,obj[a]);
}
}
} else
var that = t.apply(this,arguments);
if (map._patch) map._patch(this);
return that||this;
};
window[name].prototype=t.prototype;
if (ext)
dhtmlXHeir(window[name].prototype,ext);
};
dhtmlxAjax={
get:function(url,callback){
var t=new dtmlXMLLoaderObject(true);
t.async=(arguments.length<3);
t.waitCall=callback;
t.loadXML(url)
return t;
},
post:function(url,post,callback){
var t=new dtmlXMLLoaderObject(true);
t.async=(arguments.length<4);
t.waitCall=callback;
t.loadXML(url,true,post)
return t;
},
getSync:function(url){
return this.get(url,null,true)
},
postSync:function(url,post){
return this.post(url,post,null,true);
}
}
/**
* @desc: xmlLoader object
* @type: private
* @param: funcObject - xml parser function
* @param: object - jsControl object
* @param: async - sync/async mode (async by default)
* @param: rSeed - enable/disable random seed ( prevent IE caching)
* @topic: 0
*/
function dtmlXMLLoaderObject(funcObject, dhtmlObject, async, rSeed){
this.xmlDoc="";
if (typeof (async) != "undefined")
this.async=async;
else
this.async=true;
this.onloadAction=funcObject||null;
this.mainObject=dhtmlObject||null;
this.waitCall=null;
this.rSeed=rSeed||false;
return this;
};
/**
* @desc: xml loading handler
* @type: private
* @param: dtmlObject - xmlLoader object
* @topic: 0
*/
dtmlXMLLoaderObject.prototype.waitLoadFunction=function(dhtmlObject){
var once = true;
this.check=function (){
if ((dhtmlObject)&&(dhtmlObject.onloadAction != null)){
if ((!dhtmlObject.xmlDoc.readyState)||(dhtmlObject.xmlDoc.readyState == 4)){
if (!once)
return;
once=false; //IE 5 fix
if (typeof dhtmlObject.onloadAction == "function")
dhtmlObject.onloadAction(dhtmlObject.mainObject, null, null, null, dhtmlObject);
if (dhtmlObject.waitCall){
dhtmlObject.waitCall.call(this,dhtmlObject);
dhtmlObject.waitCall=null;
}
}
}
};
return this.check;
};
/**
* @desc: return XML top node
* @param: tagName - top XML node tag name (not used in IE, required for Safari and Mozilla)
* @type: private
* @returns: top XML node
* @topic: 0
*/
dtmlXMLLoaderObject.prototype.getXMLTopNode=function(tagName, oldObj){
if (this.xmlDoc.responseXML){
var temp = this.xmlDoc.responseXML.getElementsByTagName(tagName);
if(temp.length==0 && tagName.indexOf(":")!=-1)
var temp = this.xmlDoc.responseXML.getElementsByTagName((tagName.split(":"))[1]);
var z = temp[0];
} else
var z = this.xmlDoc.documentElement;
if (z){
this._retry=false;
return z;
}
if ((_isIE)&&(!this._retry)){
//fall back to MS.XMLDOM
var xmlString = this.xmlDoc.responseText;
var oldObj = this.xmlDoc;
this._retry=true;
this.xmlDoc=new ActiveXObject("Microsoft.XMLDOM");
this.xmlDoc.async=false;
this.xmlDoc["loadXM"+"L"](xmlString);
return this.getXMLTopNode(tagName, oldObj);
}
dhtmlxError.throwError("LoadXML", "Incorrect XML", [
(oldObj||this.xmlDoc),
this.mainObject
]);
return document.createElement("DIV");
};
/**
* @desc: load XML from string
* @type: private
* @param: xmlString - xml string
* @topic: 0
*/
dtmlXMLLoaderObject.prototype.loadXMLString=function(xmlString){
{
try{
var parser = new DOMParser();
this.xmlDoc=parser.parseFromString(xmlString, "text/xml");
}
catch (e){
this.xmlDoc=new ActiveXObject("Microsoft.XMLDOM");
this.xmlDoc.async=this.async;
this.xmlDoc["loadXM"+"L"](xmlString);
}
}
this.onloadAction(this.mainObject, null, null, null, this);
if (this.waitCall){
this.waitCall();
this.waitCall=null;
}
}
/**
* @desc: load XML
* @type: private
* @param: filePath - xml file path
* @param: postMode - send POST request
* @param: postVars - list of vars for post request
* @topic: 0
*/
dtmlXMLLoaderObject.prototype.loadXML=function(filePath, postMode, postVars, rpc){
if (this.rSeed)
filePath+=((filePath.indexOf("?") != -1) ? "&" : "?")+"a_dhx_rSeed="+(new Date()).valueOf();
this.filePath=filePath;
if ((!_isIE)&&(window.XMLHttpRequest))
this.xmlDoc=new XMLHttpRequest();
else {
this.xmlDoc=new ActiveXObject("Microsoft.XMLHTTP");
}
if (this.async)
this.xmlDoc.onreadystatechange=new this.waitLoadFunction(this);
this.xmlDoc.open(postMode ? "POST" : "GET", filePath, this.async);
if (rpc){
this.xmlDoc.setRequestHeader("User-Agent", "dhtmlxRPC v0.1 ("+navigator.userAgent+")");
this.xmlDoc.setRequestHeader("Content-type", "text/xml");
}
else if (postMode)
this.xmlDoc.setRequestHeader('Content-type', 'application/x-www-form-urlencoded');
this.xmlDoc.setRequestHeader("X-Requested-With","XMLHttpRequest");
this.xmlDoc.send(null||postVars);
if (!this.async)
(new this.waitLoadFunction(this))();
};
/**
* @desc: destructor, cleans used memory
* @type: private
* @topic: 0
*/
dtmlXMLLoaderObject.prototype.destructor=function(){
this.onloadAction=null;
this.mainObject=null;
this.xmlDoc=null;
return null;
}
dtmlXMLLoaderObject.prototype.xmlNodeToJSON = function(node){
var t={};
for (var i=0; i<node.attributes.length; i++)
t[node.attributes[i].name]=node.attributes[i].value;
t["_tagvalue"]=node.firstChild?node.firstChild.nodeValue:"";
for (var i=0; i<node.childNodes.length; i++){
var name=node.childNodes[i].tagName;
if (name){
if (!t[name]) t[name]=[];
t[name].push(this.xmlNodeToJSON(node.childNodes[i]));
}
}
return t;
}
/**
* @desc: Call wrapper
* @type: private
* @param: funcObject - action handler
* @param: dhtmlObject - user data
* @returns: function handler
* @topic: 0
*/
function callerFunction(funcObject, dhtmlObject){
this.handler=function(e){
if (!e)
e=window.event;
funcObject(e, dhtmlObject);
return true;
};
return this.handler;
};
/**
* @desc: Calculate absolute position of html object
* @type: private
* @param: htmlObject - html object
* @topic: 0
*/
function getAbsoluteLeft(htmlObject){
return getOffset(htmlObject).left;
}
/**
* @desc: Calculate absolute position of html object
* @type: private
* @param: htmlObject - html object
* @topic: 0
*/
function getAbsoluteTop(htmlObject){
return getOffset(htmlObject).top;
}
function getOffsetSum(elem) {
var top=0, left=0;
while(elem) {
top = top + parseInt(elem.offsetTop);
left = left + parseInt(elem.offsetLeft);
elem = elem.offsetParent;
}
return {top: top, left: left};
}
function getOffsetRect(elem) {
var box = elem.getBoundingClientRect();
var body = document.body;
var docElem = document.documentElement;
var scrollTop = window.pageYOffset || docElem.scrollTop || body.scrollTop;
var scrollLeft = window.pageXOffset || docElem.scrollLeft || body.scrollLeft;
var clientTop = docElem.clientTop || body.clientTop || 0;
var clientLeft = docElem.clientLeft || body.clientLeft || 0;
var top = box.top + scrollTop - clientTop;
var left = box.left + scrollLeft - clientLeft;
return { top: Math.round(top), left: Math.round(left) };
}
function getOffset(elem) {
if (elem.getBoundingClientRect && !_isChrome) {
return getOffsetRect(elem);
} else {
return getOffsetSum(elem);
}
}
/**
* @desc: Convert string to it boolean representation
* @type: private
* @param: inputString - string for covertion
* @topic: 0
*/
function convertStringToBoolean(inputString){
if (typeof (inputString) == "string")
inputString=inputString.toLowerCase();
switch (inputString){
case "1":
case "true":
case "yes":
case "y":
case 1:
case true:
return true;
break;
default: return false;
}
}
/**
* @desc: find out what symbol to use as url param delimiters in further params
* @type: private
* @param: str - current url string
* @topic: 0
*/
function getUrlSymbol(str){
if (str.indexOf("?") != -1)
return "&"
else
return "?"
}
function dhtmlDragAndDropObject(){
if (window.dhtmlDragAndDrop)
return window.dhtmlDragAndDrop;
this.lastLanding=0;
this.dragNode=0;
this.dragStartNode=0;
this.dragStartObject=0;
this.tempDOMU=null;
this.tempDOMM=null;
this.waitDrag=0;
window.dhtmlDragAndDrop=this;
return this;
};
dhtmlDragAndDropObject.prototype.removeDraggableItem=function(htmlNode){
htmlNode.onmousedown=null;
htmlNode.dragStarter=null;
htmlNode.dragLanding=null;
}
dhtmlDragAndDropObject.prototype.addDraggableItem=function(htmlNode, dhtmlObject){
htmlNode.onmousedown=this.preCreateDragCopy;
htmlNode.dragStarter=dhtmlObject;
this.addDragLanding(htmlNode, dhtmlObject);
}
dhtmlDragAndDropObject.prototype.addDragLanding=function(htmlNode, dhtmlObject){
htmlNode.dragLanding=dhtmlObject;
}
dhtmlDragAndDropObject.prototype.preCreateDragCopy=function(e){
if ((e||event) && (e||event).button == 2)
return;
if (window.dhtmlDragAndDrop.waitDrag){
window.dhtmlDragAndDrop.waitDrag=0;
document.body.onmouseup=window.dhtmlDragAndDrop.tempDOMU;
document.body.onmousemove=window.dhtmlDragAndDrop.tempDOMM;
return false;
}
window.dhtmlDragAndDrop.waitDrag=1;
window.dhtmlDragAndDrop.tempDOMU=document.body.onmouseup;
window.dhtmlDragAndDrop.tempDOMM=document.body.onmousemove;
window.dhtmlDragAndDrop.dragStartNode=this;
window.dhtmlDragAndDrop.dragStartObject=this.dragStarter;
document.body.onmouseup=window.dhtmlDragAndDrop.preCreateDragCopy;
document.body.onmousemove=window.dhtmlDragAndDrop.callDrag;
window.dhtmlDragAndDrop.downtime = new Date().valueOf();
if ((e)&&(e.preventDefault)){
e.preventDefault();
return false;
}
return false;
};
dhtmlDragAndDropObject.prototype.callDrag=function(e){
if (!e)
e=window.event;
dragger=window.dhtmlDragAndDrop;
if ((new Date()).valueOf()-dragger.downtime<100) return;
if ((e.button == 0)&&(_isIE))
return dragger.stopDrag();
if (!dragger.dragNode&&dragger.waitDrag){
dragger.dragNode=dragger.dragStartObject._createDragNode(dragger.dragStartNode, e);
if (!dragger.dragNode)
return dragger.stopDrag();
dragger.dragNode.onselectstart=function(){return false;}
dragger.gldragNode=dragger.dragNode;
document.body.appendChild(dragger.dragNode);
document.body.onmouseup=dragger.stopDrag;
dragger.waitDrag=0;
dragger.dragNode.pWindow=window;
dragger.initFrameRoute();
}
if (dragger.dragNode.parentNode != window.document.body){
var grd = dragger.gldragNode;
if (dragger.gldragNode.old)
grd=dragger.gldragNode.old;
//if (!document.all) dragger.calculateFramePosition();
grd.parentNode.removeChild(grd);
var oldBody = dragger.dragNode.pWindow;
// var oldp=dragger.dragNode.parentObject;
if (_isIE){
var div = document.createElement("Div");
div.innerHTML=dragger.dragNode.outerHTML;
dragger.dragNode=div.childNodes[0];
} else
dragger.dragNode=dragger.dragNode.cloneNode(true);
dragger.dragNode.pWindow=window;
// dragger.dragNode.parentObject=oldp;
dragger.gldragNode.old=dragger.dragNode;
document.body.appendChild(dragger.dragNode);
oldBody.dhtmlDragAndDrop.dragNode=dragger.dragNode;
}
dragger.dragNode.style.left=e.clientX+15+(dragger.fx
? dragger.fx*(-1)
: 0)
+(document.body.scrollLeft||document.documentElement.scrollLeft)+"px";
dragger.dragNode.style.top=e.clientY+3+(dragger.fy
? dragger.fy*(-1)
: 0)
+(document.body.scrollTop||document.documentElement.scrollTop)+"px";
if (!e.srcElement)
var z = e.target;
else
z=e.srcElement;
dragger.checkLanding(z, e);
}
dhtmlDragAndDropObject.prototype.calculateFramePosition=function(n){
//this.fx = 0, this.fy = 0;
if (window.name){
var el = parent.frames[window.name].frameElement.offsetParent;
var fx = 0;
var fy = 0;
while (el){
fx+=el.offsetLeft;
fy+=el.offsetTop;
el=el.offsetParent;
}
if ((parent.dhtmlDragAndDrop)){
var ls = parent.dhtmlDragAndDrop.calculateFramePosition(1);
fx+=ls.split('_')[0]*1;
fy+=ls.split('_')[1]*1;
}
if (n)
return fx+"_"+fy;
else
this.fx=fx;
this.fy=fy;
}
return "0_0";
}
dhtmlDragAndDropObject.prototype.checkLanding=function(htmlObject, e){
if ((htmlObject)&&(htmlObject.dragLanding)){
if (this.lastLanding)
this.lastLanding.dragLanding._dragOut(this.lastLanding);
this.lastLanding=htmlObject;
this.lastLanding=this.lastLanding.dragLanding._dragIn(this.lastLanding, this.dragStartNode, e.clientX,
e.clientY, e);
this.lastLanding_scr=(_isIE ? e.srcElement : e.target);
} else {
if ((htmlObject)&&(htmlObject.tagName != "BODY"))
this.checkLanding(htmlObject.parentNode, e);
else {
if (this.lastLanding)
this.lastLanding.dragLanding._dragOut(this.lastLanding, e.clientX, e.clientY, e);
this.lastLanding=0;
if (this._onNotFound)
this._onNotFound();
}
}
}
dhtmlDragAndDropObject.prototype.stopDrag=function(e, mode){
dragger=window.dhtmlDragAndDrop;
if (!mode){
dragger.stopFrameRoute();
var temp = dragger.lastLanding;
dragger.lastLanding=null;
if (temp)
temp.dragLanding._drag(dragger.dragStartNode, dragger.dragStartObject, temp, (_isIE
? event.srcElement
: e.target));
}
dragger.lastLanding=null;
if ((dragger.dragNode)&&(dragger.dragNode.parentNode == document.body))
dragger.dragNode.parentNode.removeChild(dragger.dragNode);
dragger.dragNode=0;
dragger.gldragNode=0;
dragger.fx=0;
dragger.fy=0;
dragger.dragStartNode=0;
dragger.dragStartObject=0;
document.body.onmouseup=dragger.tempDOMU;
document.body.onmousemove=dragger.tempDOMM;
dragger.tempDOMU=null;
dragger.tempDOMM=null;
dragger.waitDrag=0;
}
dhtmlDragAndDropObject.prototype.stopFrameRoute=function(win){
if (win)
window.dhtmlDragAndDrop.stopDrag(1, 1);
for (var i = 0; i < window.frames.length; i++){
try{
if ((window.frames[i] != win)&&(window.frames[i].dhtmlDragAndDrop))
window.frames[i].dhtmlDragAndDrop.stopFrameRoute(window);
} catch(e){}
}
try{
if ((parent.dhtmlDragAndDrop)&&(parent != window)&&(parent != win))
parent.dhtmlDragAndDrop.stopFrameRoute(window);
} catch(e){}
}
dhtmlDragAndDropObject.prototype.initFrameRoute=function(win, mode){
if (win){
window.dhtmlDragAndDrop.preCreateDragCopy({});
window.dhtmlDragAndDrop.dragStartNode=win.dhtmlDragAndDrop.dragStartNode;
window.dhtmlDragAndDrop.dragStartObject=win.dhtmlDragAndDrop.dragStartObject;
window.dhtmlDragAndDrop.dragNode=win.dhtmlDragAndDrop.dragNode;
window.dhtmlDragAndDrop.gldragNode=win.dhtmlDragAndDrop.dragNode;
window.document.body.onmouseup=window.dhtmlDragAndDrop.stopDrag;
window.waitDrag=0;
if (((!_isIE)&&(mode))&&((!_isFF)||(_FFrv < 1.8)))
window.dhtmlDragAndDrop.calculateFramePosition();
}
try{
if ((parent.dhtmlDragAndDrop)&&(parent != window)&&(parent != win))
parent.dhtmlDragAndDrop.initFrameRoute(window);
}catch(e){}
for (var i = 0; i < window.frames.length; i++){
try{
if ((window.frames[i] != win)&&(window.frames[i].dhtmlDragAndDrop))
window.frames[i].dhtmlDragAndDrop.initFrameRoute(window, ((!win||mode) ? 1 : 0));
} catch(e){}
}
}
var _isFF = false;
var _isIE = false;
var _isOpera = false;
var _isKHTML = false;
var _isMacOS = false;
var _isChrome = false;
if (navigator.userAgent.indexOf('Macintosh') != -1)
_isMacOS=true;
if (navigator.userAgent.toLowerCase().indexOf('chrome')>-1)
_isChrome=true;
if ((navigator.userAgent.indexOf('Safari') != -1)||(navigator.userAgent.indexOf('Konqueror') != -1)){
var _KHTMLrv = parseFloat(navigator.userAgent.substr(navigator.userAgent.indexOf('Safari')+7, 5));
if (_KHTMLrv > 525){ //mimic FF behavior for Safari 3.1+
_isFF=true;
var _FFrv = 1.9;
} else
_isKHTML=true;
} else if (navigator.userAgent.indexOf('Opera') != -1){
_isOpera=true;
_OperaRv=parseFloat(navigator.userAgent.substr(navigator.userAgent.indexOf('Opera')+6, 3));
}
else if (navigator.appName.indexOf("Microsoft") != -1){
_isIE=true;
if (navigator.appVersion.indexOf("MSIE 8.0")!= -1 && document.compatMode != "BackCompat") _isIE=8;
} else {
_isFF=true;
var _FFrv = parseFloat(navigator.userAgent.split("rv:")[1])
}
//multibrowser Xpath processor
dtmlXMLLoaderObject.prototype.doXPath=function(xpathExp, docObj, namespace, result_type){
if (_isKHTML || (!_isIE && !window.XPathResult))
return this.doXPathOpera(xpathExp, docObj);
if (_isIE){ //IE
if (!docObj)
if (!this.xmlDoc.nodeName)
docObj=this.xmlDoc.responseXML
else
docObj=this.xmlDoc;
if (!docObj)
dhtmlxError.throwError("LoadXML", "Incorrect XML", [
(docObj||this.xmlDoc),
this.mainObject
]);
if (namespace != null)
docObj.setProperty("SelectionNamespaces", "xmlns:xsl='"+namespace+"'"); //
if (result_type == 'single'){
return docObj.selectSingleNode(xpathExp);
}
else {
return docObj.selectNodes(xpathExp)||new Array(0);
}
} else { //Mozilla
var nodeObj = docObj;
if (!docObj){
if (!this.xmlDoc.nodeName){
docObj=this.xmlDoc.responseXML
}
else {
docObj=this.xmlDoc;
}
}
if (!docObj)
dhtmlxError.throwError("LoadXML", "Incorrect XML", [
(docObj||this.xmlDoc),
this.mainObject
]);
if (docObj.nodeName.indexOf("document") != -1){
nodeObj=docObj;
}
else {
nodeObj=docObj;
docObj=docObj.ownerDocument;
}
var retType = XPathResult.ANY_TYPE;
if (result_type == 'single')
retType=XPathResult.FIRST_ORDERED_NODE_TYPE
var rowsCol = new Array();
var col = docObj.evaluate(xpathExp, nodeObj, function(pref){
return namespace
}, retType, null);
if (retType == XPathResult.FIRST_ORDERED_NODE_TYPE){
return col.singleNodeValue;
}
var thisColMemb = col.iterateNext();
while (thisColMemb){
rowsCol[rowsCol.length]=thisColMemb;
thisColMemb=col.iterateNext();
}
return rowsCol;
}
}
function _dhtmlxError(type, name, params){
if (!this.catches)
this.catches=new Array();
return this;
}
_dhtmlxError.prototype.catchError=function(type, func_name){
this.catches[type]=func_name;
}
_dhtmlxError.prototype.throwError=function(type, name, params){
if (this.catches[type])
return this.catches[type](type, name, params);
if (this.catches["ALL"])
return this.catches["ALL"](type, name, params);
alert("Error type: "+arguments[0]+"\nDescription: "+arguments[1]);
return null;
}
window.dhtmlxError=new _dhtmlxError();
//opera fake, while 9.0 not released
//multibrowser Xpath processor
dtmlXMLLoaderObject.prototype.doXPathOpera=function(xpathExp, docObj){
//this is fake for Opera
var z = xpathExp.replace(/[\/]+/gi, "/").split('/');
var obj = null;
var i = 1;
if (!z.length)
return [];
if (z[0] == ".")
obj=[docObj]; else if (z[0] == ""){
obj=(this.xmlDoc.responseXML||this.xmlDoc).getElementsByTagName(z[i].replace(/\[[^\]]*\]/g, ""));
i++;
} else
return [];
for (i; i < z.length; i++)obj=this._getAllNamedChilds(obj, z[i]);
if (z[i-1].indexOf("[") != -1)
obj=this._filterXPath(obj, z[i-1]);
return obj;
}
dtmlXMLLoaderObject.prototype._filterXPath=function(a, b){
var c = new Array();
var b = b.replace(/[^\[]*\[\@/g, "").replace(/[\[\]\@]*/g, "");
for (var i = 0; i < a.length; i++)
if (a[i].getAttribute(b))
c[c.length]=a[i];
return c;
}
dtmlXMLLoaderObject.prototype._getAllNamedChilds=function(a, b){
var c = new Array();
if (_isKHTML)
b=b.toUpperCase();
for (var i = 0; i < a.length; i++)for (var j = 0; j < a[i].childNodes.length; j++){
if (_isKHTML){
if (a[i].childNodes[j].tagName&&a[i].childNodes[j].tagName.toUpperCase() == b)
c[c.length]=a[i].childNodes[j];
}
else if (a[i].childNodes[j].tagName == b)
c[c.length]=a[i].childNodes[j];
}
return c;
}
function dhtmlXHeir(a, b){
for (var c in b)
if (typeof (b[c]) == "function")
a[c]=b[c];
return a;
}
function dhtmlxEvent(el, event, handler){
if (el.addEventListener)
el.addEventListener(event, handler, false);
else if (el.attachEvent)
el.attachEvent("on"+event, handler);
}
//============= XSL Extension ===================================
dtmlXMLLoaderObject.prototype.xslDoc=null;
dtmlXMLLoaderObject.prototype.setXSLParamValue=function(paramName, paramValue, xslDoc){
if (!xslDoc)
xslDoc=this.xslDoc
if (xslDoc.responseXML)
xslDoc=xslDoc.responseXML;
var item =
this.doXPath("/xsl:stylesheet/xsl:variable[@name='"+paramName+"']", xslDoc,
"http:/\/www.w3.org/1999/XSL/Transform", "single");
if (item != null)
item.firstChild.nodeValue=paramValue
}
dtmlXMLLoaderObject.prototype.doXSLTransToObject=function(xslDoc, xmlDoc){
if (!xslDoc)
xslDoc=this.xslDoc;
if (xslDoc.responseXML)
xslDoc=xslDoc.responseXML
if (!xmlDoc)
xmlDoc=this.xmlDoc;
if (xmlDoc.responseXML)
xmlDoc=xmlDoc.responseXML
//MOzilla
if (!_isIE){
if (!this.XSLProcessor){
this.XSLProcessor=new XSLTProcessor();
this.XSLProcessor.importStylesheet(xslDoc);
}
var result = this.XSLProcessor.transformToDocument(xmlDoc);
} else {
var result = new ActiveXObject("Msxml2.DOMDocument.3.0");
try{
xmlDoc.transformNodeToObject(xslDoc, result);
}catch(e){
result = xmlDoc.transformNode(xslDoc);
}
}
return result;
}
dtmlXMLLoaderObject.prototype.doXSLTransToString=function(xslDoc, xmlDoc){
var res = this.doXSLTransToObject(xslDoc, xmlDoc);
if(typeof(res)=="string")
return res;
return this.doSerialization(res);
}
dtmlXMLLoaderObject.prototype.doSerialization=function(xmlDoc){
if (!xmlDoc)
xmlDoc=this.xmlDoc;
if (xmlDoc.responseXML)
xmlDoc=xmlDoc.responseXML
if (!_isIE){
var xmlSerializer = new XMLSerializer();
return xmlSerializer.serializeToString(xmlDoc);
} else
return xmlDoc.xml;
}
/**
* @desc:
* @type: private
*/
dhtmlxEventable=function(obj){
obj.dhx_SeverCatcherPath="";
obj.attachEvent=function(name, catcher, callObj){
name='ev_'+name.toLowerCase();
if (!this[name])
this[name]=new this.eventCatcher(callObj||this);
return(name+':'+this[name].addEvent(catcher)); //return ID (event name & event ID)
}
obj.callEvent=function(name, arg0){
name='ev_'+name.toLowerCase();
if (this[name])
return this[name].apply(this, arg0);
return true;
}
obj.checkEvent=function(name){
return (!!this['ev_'+name.toLowerCase()])
}
obj.eventCatcher=function(obj){
var dhx_catch = [];
var z = function(){
var res = true;
for (var i = 0; i < dhx_catch.length; i++){
if (dhx_catch[i] != null){
var zr = dhx_catch[i].apply(obj, arguments);
res=res&&zr;
}
}
return res;
}
z.addEvent=function(ev){
if (typeof (ev) != "function")
ev=eval(ev);
if (ev)
return dhx_catch.push(ev)-1;
return false;
}
z.removeEvent=function(id){
dhx_catch[id]=null;
}
return z;
}
obj.detachEvent=function(id){
if (id != false){
var list = id.split(':'); //get EventName and ID
this[list[0]].removeEvent(list[1]); //remove event
}
}
}

View File

@ -0,0 +1,581 @@
/**
* @desc: constructor, data processor object
* @param: serverProcessorURL - url used for update
* @type: public
*/
function dataProcessor(serverProcessorURL){
this.serverProcessor = serverProcessorURL;
this.action_param="!nativeeditor_status";
this.object = null;
this.updatedRows = []; //ids of updated rows
this.autoUpdate = true;
this.updateMode = "cell";
this._tMode="GET";
this.post_delim = "_";
this._waitMode=0;
this._in_progress={};//?
this._invalid={};
this.mandatoryFields=[];
this.messages=[];
this.styles={
updated:"font-weight:bold;",
inserted:"font-weight:bold;",
deleted:"text-decoration : line-through;",
invalid:"background-color:FFE0E0;",
invalid_cell:"border-bottom:2px solid red;",
error:"color:red;",
clear:"font-weight:normal;text-decoration:none;"
};
this.enableUTFencoding(true);
dhtmlxEventable(this);
return this;
}
dataProcessor.prototype={
/**
* @desc: select GET or POST transaction model
* @param: mode - GET/POST
* @param: total - true/false - send records row by row or all at once (for grid only)
* @type: public
*/
setTransactionMode:function(mode,total){
this._tMode=mode;
this._tSend=total;
},
escape:function(data){
if (this._utf)
return encodeURIComponent(data);
else
return escape(data);
},
/**
* @desc: allows to set escaping mode
* @param: true - utf based escaping, simple - use current page encoding
* @type: public
*/
enableUTFencoding:function(mode){
this._utf=convertStringToBoolean(mode);
},
/**
* @desc: allows to define, which column may trigger update
* @param: val - array or list of true/false values
* @type: public
*/
setDataColumns:function(val){
this._columns=(typeof val == "string")?val.split(","):val;
},
/**
* @desc: get state of updating
* @returns: true - all in sync with server, false - some items not updated yet.
* @type: public
*/
getSyncState:function(){
return !this.updatedRows.length;
},
/**
* @desc: enable/disable named field for data syncing, will use column ids for grid
* @param: mode - true/false
* @type: public
*/
enableDataNames:function(mode){
this._endnm=convertStringToBoolean(mode);
},
/**
* @desc: enable/disable mode , when only changed fields and row id send to the server side, instead of all fields in default mode
* @param: mode - true/false
* @type: public
*/
enablePartialDataSend:function(mode){
this._changed=convertStringToBoolean(mode);
},
/**
* @desc: set if rows should be send to server automaticaly
* @param: mode - "row" - based on row selection changed, "cell" - based on cell editing finished, "off" - manual data sending
* @type: public
*/
setUpdateMode:function(mode,dnd){
this.autoUpdate = (mode=="cell");
this.updateMode = mode;
this.dnd=dnd;
},
ignore:function(code,master){
this._silent_mode=true;
code.call(master||window);
this._silent_mode=false;
},
/**
* @desc: mark row as updated/normal. check mandatory fields,initiate autoupdate (if turned on)
* @param: rowId - id of row to set update-status for
* @param: state - true for "updated", false for "not updated"
* @param: mode - update mode name
* @type: public
*/
setUpdated:function(rowId,state,mode){
if (this._silent_mode) return;
var ind=this.findRow(rowId);
mode=mode||"updated";
var existing = this.obj.getUserData(rowId,this.action_param);
if (existing && mode == "updated") mode=existing;
if (state){
this.set_invalid(rowId,false); //clear previous error flag
this.updatedRows[ind]=rowId;
this.obj.setUserData(rowId,this.action_param,mode);
if (this._in_progress[rowId])
this._in_progress[rowId]="wait";
} else{
if (!this.is_invalid(rowId)){
this.updatedRows.splice(ind,1);
this.obj.setUserData(rowId,this.action_param,"");
}
}
//clear changed flag
if (!state)
this._clearUpdateFlag(rowId);
this.markRow(rowId,state,mode);
if (state && this.autoUpdate) this.sendData(rowId);
},
_clearUpdateFlag:function(id){},
markRow:function(id,state,mode){
var str="";
var invalid=this.is_invalid(id);
if (invalid){
str=this.styles[invalid];
state=true;
}
if (this.callEvent("onRowMark",[id,state,mode,invalid])){
//default logic
str=this.styles[state?mode:"clear"]+str;
this.obj[this._methods[0]](id,str);
if (invalid && invalid.details){
str+=this.styles[invalid+"_cell"];
for (var i=0; i < invalid.details.length; i++)
if (invalid.details[i])
this.obj[this._methods[1]](id,i,str);
}
}
},
getState:function(id){
return this.obj.getUserData(id,this.action_param);
},
is_invalid:function(id){
return this._invalid[id];
},
set_invalid:function(id,mode,details){
if (details) mode={value:mode, details:details, toString:function(){ return this.value.toString(); }};
this._invalid[id]=mode;
},
/**
* @desc: check mandatory fields and varify values of cells, initiate update (if specified)
* @param: rowId - id of row to set update-status for
* @type: public
*/
checkBeforeUpdate:function(rowId){
return true;
},
/**
* @desc: send row(s) values to server
* @param: rowId - id of row which data to send. If not specified, then all "updated" rows will be send
* @type: public
*/
sendData:function(rowId){
if (this._waitMode && (this.obj.mytype=="tree" || this.obj._h2)) return;
if (this.obj.editStop) this.obj.editStop();
if(typeof rowId == "undefined" || this._tSend) return this.sendAllData();
if (this._in_progress[rowId]) return false;
this.messages=[];
if (!this.checkBeforeUpdate(rowId) && this.callEvent("onValidatationError",[rowId,this.messages])) return false;
this._beforeSendData(this._getRowData(rowId),rowId);
},
_beforeSendData:function(data,rowId){
if (!this.callEvent("onBeforeUpdate",[rowId,this.getState(rowId),data])) return false;
this._sendData(data,rowId);
},
serialize:function(data, id){
if (typeof data == "string")
return data;
if (typeof id != "undefined")
return this.serialize_one(data,"");
else{
var stack = [];
var keys = [];
for (var key in data)
if (data.hasOwnProperty(key)){
stack.push(this.serialize_one(data[key],key+this.post_delim));
keys.push(key);
}
stack.push("ids="+this.escape(keys.join(",")));
return stack.join("&");
}
},
serialize_one:function(data, pref){
if (typeof data == "string")
return data;
var stack = [];
for (var key in data)
if (data.hasOwnProperty(key))
stack.push(this.escape((pref||"")+key)+"="+this.escape(data[key]));
return stack.join("&");
},
_sendData:function(a1,rowId){
if (!a1) return; //nothing to send
if (!this.callEvent("onBeforeDataSending",rowId?[rowId,this.getState(rowId),a1]:[null, null, a1])) return false;
if (rowId)
this._in_progress[rowId]=(new Date()).valueOf();
var a2=new dtmlXMLLoaderObject(this.afterUpdate,this,true);
var a3 = this.serverProcessor+(this._user?(getUrlSymbol(this.serverProcessor)+["dhx_user="+this._user,"dhx_version="+this.obj.getUserData(0,"version")].join("&")):"");
if (this._tMode!="POST")
a2.loadXML(a3+((a3.indexOf("?")!=-1)?"&":"?")+this.serialize(a1,rowId));
else
a2.loadXML(a3,true,this.serialize(a1,rowId));
this._waitMode++;
},
sendAllData:function(){
if (!this.updatedRows.length) return;
this.messages=[]; var valid=true;
for (var i=0; i<this.updatedRows.length; i++)
valid&=this.checkBeforeUpdate(this.updatedRows[i]);
if (!valid && !this.callEvent("onValidatationError",["",this.messages])) return false;
if (this._tSend)
this._sendData(this._getAllData());
else
for (var i=0; i<this.updatedRows.length; i++)
if (!this._in_progress[this.updatedRows[i]]){
if (this.is_invalid(this.updatedRows[i])) continue;
this._beforeSendData(this._getRowData(this.updatedRows[i]),this.updatedRows[i]);
if (this._waitMode && (this.obj.mytype=="tree" || this.obj._h2)) return; //block send all for tree
}
},
_getAllData:function(rowId){
var out={};
var has_one = false;
for(var i=0;i<this.updatedRows.length;i++){
var id=this.updatedRows[i];
if (this._in_progress[id] || this.is_invalid(id)) continue;
if (!this.callEvent("onBeforeUpdate",[id,this.getState(id)])) continue;
out[id]=this._getRowData(id,id+this.post_delim);
has_one = true;
this._in_progress[id]=(new Date()).valueOf();
}
return has_one?out:null;
},
/**
* @desc: specify column which value should be varified before sending to server
* @param: ind - column index (0 based)
* @param: verifFunction - function (object) which should verify cell value (if not specified, then value will be compared to empty string). Two arguments will be passed into it: value and column name
* @type: public
*/
setVerificator:function(ind,verifFunction){
this.mandatoryFields[ind] = verifFunction||(function(value){return (value!="");});
},
/**
* @desc: remove column from list of those which should be verified
* @param: ind - column Index (0 based)
* @type: public
*/
clearVerificator:function(ind){
this.mandatoryFields[ind] = false;
},
findRow:function(pattern){
var i=0;
for(i=0;i<this.updatedRows.length;i++)
if(pattern==this.updatedRows[i]) break;
return i;
},
/**
* @desc: define custom actions
* @param: name - name of action, same as value of action attribute
* @param: handler - custom function, which receives a XMl response content for action
* @type: private
*/
defineAction:function(name,handler){
if (!this._uActions) this._uActions=[];
this._uActions[name]=handler;
},
/**
* @desc: used in combination with setOnBeforeUpdateHandler to create custom client-server transport system
* @param: sid - id of item before update
* @param: tid - id of item after up0ate
* @param: action - action name
* @type: public
* @topic: 0
*/
afterUpdateCallback:function(sid, tid, action, btag) {
var marker = sid;
var correct=(action!="error" && action!="invalid");
if (!correct) this.set_invalid(sid,action);
if ((this._uActions)&&(this._uActions[action])&&(!this._uActions[action](btag)))
return (delete this._in_progress[marker]);
if (this._in_progress[marker]!="wait")
this.setUpdated(sid, false);
var soid = sid;
switch (action) {
case "inserted":
case "insert":
if (tid != sid) {
this.obj[this._methods[2]](sid, tid);
sid = tid;
}
break;
case "delete":
case "deleted":
this.obj.setUserData(sid, this.action_param, "true_deleted");
this.obj[this._methods[3]](sid);
delete this._in_progress[marker];
return this.callEvent("onAfterUpdate", [sid, action, tid, btag]);
break;
}
if (this._in_progress[marker]!="wait"){
if (correct) this.obj.setUserData(sid, this.action_param,'');
delete this._in_progress[marker];
} else {
delete this._in_progress[marker];
this.setUpdated(tid,true,this.obj.getUserData(sid,this.action_param));
}
this.callEvent("onAfterUpdate", [sid, action, tid, btag]);
},
/**
* @desc: response from server
* @param: xml - XMLLoader object with response XML
* @type: private
*/
afterUpdate:function(that,b,c,d,xml){
xml.getXMLTopNode("data"); //fix incorrect content type in IE
if (!xml.xmlDoc.responseXML) return;
var atag=xml.doXPath("//data/action");
for (var i=0; i<atag.length; i++){
var btag=atag[i];
var action = btag.getAttribute("type");
var sid = btag.getAttribute("sid");
var tid = btag.getAttribute("tid");
that.afterUpdateCallback(sid,tid,action,btag);
}
that.finalizeUpdate();
},
finalizeUpdate:function(){
if (this._waitMode) this._waitMode--;
if ((this.obj.mytype=="tree" || this.obj._h2) && this.updatedRows.length)
this.sendData();
this.callEvent("onAfterUpdateFinish",[]);
if (!this.updatedRows.length)
this.callEvent("onFullSync",[]);
},
/**
* @desc: initializes data-processor
* @param: anObj - dhtmlxGrid object to attach this data-processor to
* @type: public
*/
init:function(anObj){
this.obj = anObj;
if (this.obj._dp_init)
this.obj._dp_init(this);
},
setOnAfterUpdate:function(ev){
this.attachEvent("onAfterUpdate",ev);
},
enableDebug:function(mode){
},
setOnBeforeUpdateHandler:function(func){
this.attachEvent("onBeforeDataSending",func);
},
/*! starts autoupdate mode
@param interval
time interval for sending update requests
*/
setAutoUpdate: function(interval, user) {
interval = interval || 2000;
this._user = user || (new Date()).valueOf();
this._need_update = false;
this._loader = null;
this._update_busy = false;
this.attachEvent("onAfterUpdate",function(sid,action,tid,xml_node){
this.afterAutoUpdate(sid, action, tid, xml_node);
});
this.attachEvent("onFullSync",function(){
this.fullSync();
});
var self = this;
window.setInterval(function(){
self.loadUpdate();
}, interval);
},
/*! process updating request answer
if status == collision version is depricated
set flag for autoupdating immidiatly
*/
afterAutoUpdate: function(sid, action, tid, xml_node) {
if (action == 'collision') {
this._need_update = true;
return false;
} else {
return true;
}
},
/*! callback function for onFillSync event
call update function if it's need
*/
fullSync: function() {
if (this._need_update == true) {
this._need_update = false;
this.loadUpdate();
}
return true;
},
/*! sends query to the server and call callback function
*/
getUpdates: function(url,callback){
if (this._update_busy)
return false;
else
this._update_busy = true;
this._loader = this._loader || new dtmlXMLLoaderObject(true);
this._loader.async=true;
this._loader.waitCall=callback;
this._loader.loadXML(url);
},
/*! returns xml node value
@param node
xml node
*/
_v: function(node) {
if (node.firstChild) return node.firstChild.nodeValue;
return "";
},
/*! returns values array of xml nodes array
@param arr
array of xml nodes
*/
_a: function(arr) {
var res = [];
for (var i=0; i < arr.length; i++) {
res[i]=this._v(arr[i]);
};
return res;
},
/*! loads updates and processes them
*/
loadUpdate: function(){
var self = this;
var version = this.obj.getUserData(0,"version");
var url = this.serverProcessor+getUrlSymbol(this.serverProcessor)+["dhx_user="+this._user,"dhx_version="+version].join("&");
url = url.replace("editing=true&","");
this.getUpdates(url, function(){
var vers = self._loader.doXPath("//userdata");
self.obj.setUserData(0,"version",self._v(vers[0]));
var upds = self._loader.doXPath("//update");
if (upds.length){
self._silent_mode = true;
for (var i=0; i<upds.length; i++) {
var status = upds[i].getAttribute('status');
var id = upds[i].getAttribute('id');
var parent = upds[i].getAttribute('parent');
switch (status) {
case 'inserted':
self.callEvent("insertCallback",[upds[i], id, parent]);
break;
case 'updated':
self.callEvent("updateCallback",[upds[i], id, parent]);
break;
case 'deleted':
self.callEvent("deleteCallback",[upds[i], id, parent]);
break;
}
}
self._silent_mode = false;
}
self._update_busy = false;
self = null;
});
}
};
//(c)dhtmlx ltd. www.dhtmlx.com

View File

@ -0,0 +1,164 @@
dataProcessor.prototype._o_init = dataProcessor.prototype.init;
dataProcessor.prototype.init=function(obj){
this._console=this._console||this._createConsole();
this.attachEvent("onValidatationError",function(rowId){
this._log("Validation error for ID="+(rowId||"[multiple]"));
return true;
});
return this._o_init(obj);
}
dataProcessor.prototype._createConsole=function(){
var c=document.createElement("DIV");
c.style.cssText='width:450px; height:420px; overflow:auto; position:absolute; z-index:99999; background-color:white; top:0px; right:0px; border:1px dashed black; font-family:Tahoma; Font-size:10pt;';
c.innerHTML="<div style='width:100%; background-color:gray; font-weight:bold; color:white;'><span style='cursor:pointer;float:right;' onclick='this.parentNode.parentNode.style.display=\"none\"'><sup>[close]&nbsp;</sup></span><span style='cursor:pointer;float:right;' onclick='this.parentNode.parentNode.childNodes[2].innerHTML=\"\"'><sup>[clear]&nbsp;</sup></span>&nbsp;DataProcessor</div><div style='width:100%; height:200px; overflow-Y:scroll;'>&nbsp;Current state</div><div style='width:100%; height:200px; overflow-Y:scroll;'>&nbsp;Log:</div>";
if (document.body) document.body.insertBefore(c,document.body.firstChild);
else dhtmlxEvent(window,"load",function(){
document.body.insertBefore(c,document.body.firstChild);
})
dhtmlxEvent(window,"dblclick",function(){
c.style.display='';
})
return c;
}
dataProcessor.prototype._error=function(data){
this._log("<span style='color:red'>"+data+"</span>");
}
dataProcessor.prototype._log=function(data){
var div=document.createElement("DIV");
div.innerHTML = data;
var parent=this._console.childNodes[2];
parent.appendChild(div);
parent.scrollTop=parent.scrollHeight;
if (window.console && window.console.log)
window.console.log("DataProcessor :: "+data.replace("&nbsp;"," ").replace("<b>","").replace("</b>",""));
}
dataProcessor.prototype._updateStat=function(data){
var data=["&nbsp;Current state"];
for(var i=0;i<this.updatedRows.length;i++)
data.push("&nbsp;ID:"+this.updatedRows[i]+" Status: "+(this.obj.getUserData(this.updatedRows[i],"!nativeeditor_status")||"updated")+", "+(this.is_invalid(this.updatedRows[i])||"valid"))
this._console.childNodes[1].innerHTML=data.join("<br/>")+"<hr/>Current mode: "+this.updateMode;
}
dataProcessor.prototype.xml_analize=function(xml){
if (_isFF){
if (!xml.xmlDoc.responseXML)
this._error("Not an XML, probably incorrect content type specified ( must be text/xml ), or some text output was started before XML data");
else if (xml.xmlDoc.responseXML.firstChild.tagName=="parsererror")
this._error(xml.xmlDoc.responseXML.firstChild.textContent);
else return true;
} else if (_isIE){
if (xml.xmlDoc.responseXML.parseError.errorCode)
this._error("XML error : "+xml.xmlDoc.responseXML.parseError.reason);
else if (!xml.xmlDoc.responseXML.documentElement)
this._error("Not an XML, probably incorrect content type specified ( must be text/xml ), or some text output was started before XML data");
else return true;
}
return false;
}
dataProcessor.wrap=function(name,before,after){
var d=dataProcessor.prototype;
if (!d._wrap) d._wrap={};
d._wrap[name]=d[name];
d[name]=function(){
if (before) before.apply(this,arguments);
var res=d._wrap[name].apply(this,arguments);
if (after) after.apply(this,[arguments,res]);
return res;
}
};
dataProcessor.wrap("setUpdated",function(rowId,state,mode){
this._log("&nbsp;row <b>"+rowId+"</b> "+(state?"marked":"unmarked")+" ["+(mode||"updated")+","+(this.is_invalid(rowId)||"valid")+"]");
},function(){
this._updateStat();
});
dataProcessor.wrap("sendData",function(rowId){
if (rowId){
this._log("&nbsp;Initiating data sending for <b>"+rowId+"</b>");
if (this.obj.mytype=="tree"){
if (!this.obj._idpull[rowId])
this._log("&nbsp;Error! item with such ID not exists <b>"+rowId+"</b>");
} else {
if (!this.obj.rowsAr[rowId])
this._log("&nbsp;Error! row with such ID not exists <b>"+rowId+"</b>");
}
}
},function(){
});
dataProcessor.wrap("sendAllData",function(){
this._log("&nbsp;Initiating data sending for <b>all</b> rows ");
},function(){
});
dataProcessor.logSingle=function(data,id){
var tdata = {};
if (id)
tdata[id] = data;
else
tdata = data;
var url = [];
for (var key in tdata) {
url.push("<fieldset><legend>"+key+"</legend>");
var suburl = [];
for (var ikey in tdata[key])
suburl.push(ikey+" = "+tdata[key][ikey]);
url.push(suburl.join("<br>"));
url.push("</fieldset>");
}
return url.join("");
}
dataProcessor.wrap("_sendData",function(data,rowId){
if (rowId)
this._log("&nbsp;Sending in one-by-one mode, current ID = "+rowId);
else
this._log("&nbsp;Sending all data at once");
this._log("&nbsp;Server url: "+this.serverProcessor+" <a onclick='this.parentNode.nextSibling.firstChild.style.display=\"block\"' href='#'>parameters</a>");
var url = [];
this._log("<blockquote style='display:none;'>"+dataProcessor.logSingle(data,rowId)+"<blockquote>");
},function(){
});
dataProcessor.wrap("afterUpdate",function(that,b,c,d,xml){
that._log("&nbsp;Server response received <a onclick='this.nextSibling.style.display=\"block\"' href='#'>details</a><blockquote style='display:none'><code>"+(xml.xmlDoc.responseText||"").replace(/\&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;")+"</code></blockquote>");
if (!that.xml_analize(xml)) return;
var atag=xml.doXPath("//data/action");
if (!atag){
that._log("&nbsp;No actions found");
var atag=xml.getXMLTopNode("data");
if (!atag) that._log("&nbsp;XML not valid");
else that._log("&nbsp;Incorrect content type - need to be text/xml");
}
},function(){
});
dataProcessor.wrap("afterUpdateCallback",function(sid,tid,action){
if (this.obj.mytype=="tree"){
if (!this.obj._idpull[sid]) this._log("Incorrect SID, item with such ID not exists in grid");
} else {
if (!this.obj.rowsAr[sid]) this._log("Incorrect SID, row with such ID not exists in grid");
}
this._log("&nbsp;Action: "+action+" SID:"+sid+" TID:"+tid);
},function(){
});

View File

@ -0,0 +1,545 @@
scheduler.uid=function(){
if (!this._seed) this._seed=(new Date).valueOf();
return this._seed++;
};
scheduler._events={};
scheduler.clearAll=function(){
this._events={};
this._loaded={};
this.clear_view();
};
scheduler.addEvent=function(start_date,end_date,text,id,extra_data){
var ev=start_date;
if (arguments.length!=1){
ev=extra_data||{};
ev.start_date=start_date;
ev.end_date=end_date;
ev.text=text;
ev.id=id;
};
ev.id = ev.id||scheduler.uid();
ev.text = ev.text||"";
if (typeof ev.start_date == "string") ev.start_date=this.templates.api_date(ev.start_date);
if (typeof ev.end_date == "string") ev.end_date=this.templates.api_date(ev.end_date);
ev._timed=this.is_one_day_event(ev);
var is_new=!this._events[ev.id];
this._events[ev.id]=ev;
this.event_updated(ev);
if (!this._loading)
this.callEvent(is_new?"onEventAdded":"onEventChanged",[ev.id,ev]);
};
scheduler.deleteEvent=function(id,silent){
var ev=this._events[id];
if (!silent && !this.callEvent("onBeforeEventDelete",[id,ev])) return;
if (ev){
delete this._events[id];
this.unselect(id);
this.event_updated(ev);
}
};
scheduler.getEvent=function(id){
return this._events[id];
};
scheduler.setEvent=function(id,hash){
this._events[id]=hash;
};
scheduler.for_rendered=function(id,method){
for (var i=this._rendered.length-1; i>=0; i--)
if (this._rendered[i].getAttribute("event_id")==id)
method(this._rendered[i],i);
};
scheduler.changeEventId=function(id,new_id){
if (id == new_id) return;
var ev=this._events[id];
if (ev){
ev.id=new_id;
this._events[new_id]=ev;
delete this._events[id];
}
this.for_rendered(id,function(r){
r.setAttribute("event_id",new_id);
});
if (this._select_id==id) this._select_id=new_id;
if (this._edit_id==id) this._edit_id=new_id;
this.callEvent("onEventIdChange",[id,new_id]);
};
(function(){
var attrs=["text","Text","start_date","StartDate","end_date","EndDate"];
var create_getter=function(name){
return function(id){ return (scheduler.getEvent(id))[name]; };
};
var create_setter=function(name){
return function(id,value){
var ev=scheduler.getEvent(id); ev[name]=value;
ev._changed=true;
ev._timed=this.is_one_day_event(ev);
scheduler.event_updated(ev,true);
};
};
for (var i=0; i<attrs.length; i+=2){
scheduler["getEvent"+attrs[i+1]]=create_getter(attrs[i]);
scheduler["setEvent"+attrs[i+1]]=create_setter(attrs[i]);
}
})();
scheduler.event_updated=function(ev,force){
if (this.is_visible_events(ev))
this.render_view_data();
else this.clear_event(ev.id);
};
scheduler.is_visible_events=function(ev){
if (ev.start_date<this._max_date && this._min_date<ev.end_date) return true;
return false;
};
scheduler.is_one_day_event=function(ev){
var delta = ev.end_date.getDate()-ev.start_date.getDate();
if (!delta)
return ev.start_date.getMonth()==ev.end_date.getMonth() && ev.start_date.getFullYear()==ev.end_date.getFullYear();
else {
if (delta < 0) delta = Math.ceil((ev.end_date.valueOf()-ev.start_date.valueOf())/(24*60*60*1000));
return (delta == 1 && !ev.end_date.getHours() && !ev.end_date.getMinutes() && (ev.start_date.getHours() || ev.start_date.getMinutes() ));
}
};
scheduler.get_visible_events=function(){
//not the best strategy for sure
var stack=[];
var filter = this["filter_"+this._mode];
for( var id in this._events)
if (this.is_visible_events(this._events[id]))
if (this._table_view || this.config.multi_day || this._events[id]._timed)
if (!filter || filter(id,this._events[id]))
stack.push(this._events[id]);
return stack;
};
scheduler.render_view_data=function(){
if (this._not_render) {
this._render_wait=true;
return;
}
this._render_wait=false;
this.clear_view();
var evs=this.get_visible_events();
if (this.config.multi_day && !this._table_view){
var tvs = [];
var tvd = [];
for (var i=0; i < evs.length; i++){
if (evs[i]._timed)
tvs.push(evs[i]);
else
tvd.push(evs[i]);
};
this._table_view=true;
this.render_data(tvd);
this._table_view=false;
this.render_data(tvs);
} else
this.render_data(evs);
};
scheduler.render_data=function(evs,hold){
evs=this._pre_render_events(evs,hold);
for (var i=0; i<evs.length; i++)
if (this._table_view)
this.render_event_bar(evs[i]);
else
this.render_event(evs[i]);
};
scheduler._pre_render_events=function(evs,hold){
var hb = this.xy.bar_height;
var h_old = this._colsS.heights;
var h=this._colsS.heights=[0,0,0,0,0,0,0];
if (!this._table_view) evs=this._pre_render_events_line(evs,hold); //ignore long events for now
else evs=this._pre_render_events_table(evs,hold);
if (this._table_view){
if (hold)
this._colsS.heights = h_old;
else {
var evl = this._els["dhx_cal_data"][0].firstChild;
if (evl.rows){
for (var i=0; i<evl.rows.length; i++){
h[i]++;
if ((h[i])*hb > this._colsS.height-22){ // 22 - height of cell's header
//we have overflow, update heights
var cells = evl.rows[i].cells;
for (var j=0; j < cells.length; j++) {
cells[j].childNodes[1].style.height = h[i]*hb+"px";
}
h[i]=(h[i-1]||0)+cells[0].offsetHeight;
}
h[i]=(h[i-1]||0)+evl.rows[i].cells[0].offsetHeight;
}
h.unshift(0);
if (evl.parentNode.offsetHeight<evl.parentNode.scrollHeight && !evl._h_fix){
//we have v-scroll, decrease last day cell
for (var i=0; i<evl.rows.length; i++){
var cell = evl.rows[i].cells[6].childNodes[0];
var w = cell.offsetWidth-scheduler.xy.scroll_width+"px";
cell.style.width = w;
cell.nextSibling.style.width = w;
}
evl._h_fix=true;
}
} else{
if (!evs.length && this._els["dhx_multi_day"][0].style.visibility == "visible")
h[0]=-1;
if (evs.length || h[0]==-1){
//shift days to have space for multiday events
var childs = evl.parentNode.childNodes;
var dh = (h[0]+1)*hb+"px";
for (var i=0; i<childs.length; i++)
if (this._colsS[i])
childs[i].style.top=dh;
var last = this._els["dhx_multi_day"][0];
last.style.top = "0px";
last.style.height=dh;
last.style.visibility=(h[0]==-1?"hidden":"visible");
last=this._els["dhx_multi_day"][1];
last.style.height=dh;
last.style.visibility=(h[0]==-1?"hidden":"visible");
last.className=h[0]?"dhx_multi_day_icon":"dhx_multi_day_icon_small";
this._dy_shift=(h[0]+1)*hb;
h[0] = 0;
}
}
}
}
return evs;
};
scheduler._get_event_sday=function(ev){
return Math.floor((ev.start_date.valueOf()-this._min_date.valueOf())/(24*60*60*1000));
};
scheduler._pre_render_events_line=function(evs,hold){
evs.sort(function(a,b){ return a.start_date>b.start_date?1:-1; });
var days=[]; //events by weeks
var evs_originals = [];
for (var i=0; i < evs.length; i++) {
var ev=evs[i];
//check scale overflow
var sh = ev.start_date.getHours();
var eh = ev.end_date.getHours();
ev._sday=this._get_event_sday(ev);
if (!days[ev._sday]) days[ev._sday]=[];
if (!hold){
ev._inner=false;
var stack=days[ev._sday];
while (stack.length && stack[stack.length-1].end_date<=ev.start_date)
stack.splice(stack.length-1,1);
if (stack.length) stack[stack.length-1]._inner=true;
ev._sorder=stack.length; stack.push(ev);
if (stack.length>(stack.max_count||0)) stack.max_count=stack.length;
}
if (sh < this.config.first_hour || eh >= this.config.last_hour){
evs_originals.push(ev);
evs[i]=ev=this._copy_event(ev);
if (sh < this.config.first_hour){
ev.start_date.setHours(this.config.first_hour);
ev.start_date.setMinutes(0);
}
if (eh >= this.config.last_hour){
ev.end_date.setMinutes(0);
ev.end_date.setHours(this.config.last_hour);
}
if (ev.start_date>ev.end_date || sh==this.config.last_hour) {
evs.splice(i,1); i--; continue;
}
}
}
if (!hold){
for (var i=0; i < evs.length; i++)
evs[i]._count=days[evs[i]._sday].max_count;
for (var i=0; i < evs_originals.length; i++)
evs_originals[i]._count=days[evs_originals[i]._sday].max_count;
}
return evs;
};
scheduler._time_order=function(evs){
evs.sort(function(a,b){
if (a.start_date.valueOf()==b.start_date.valueOf()){
if (a._timed && !b._timed) return 1;
if (!a._timed && b._timed) return -1;
return 0;
}
return a.start_date>b.start_date?1:-1;
});
};
scheduler._pre_render_events_table=function(evs,hold){ // max - max height of week slot
this._time_order(evs);
var out=[];
var weeks=[[],[],[],[],[],[],[]]; //events by weeks
var max = this._colsS.heights;
var start_date;
var cols = this._cols.length;
for (var i=0; i < evs.length; i++) {
var ev=evs[i];
var sd = (start_date||ev.start_date);
var ed = ev.end_date;
//trim events which are crossing through current view
if (sd<this._min_date) sd=this._min_date;
if (ed>this._max_date) ed=this._max_date;
var locate_s = this.locate_holder_day(sd,false,ev);
ev._sday=locate_s%cols;
var locate_e = this.locate_holder_day(ed,true,ev)||cols;
ev._eday=(locate_e%cols)||cols; //cols used to fill full week, when event end on monday
ev._length=locate_e-locate_s;
//3600000 - compensate 1 hour during winter|summer time shift
ev._sweek=Math.floor((this._correct_shift(sd.valueOf(),1)-this._min_date.valueOf())/(60*60*1000*24*cols));
//current slot
var stack=weeks[ev._sweek];
//check order position
var stack_line;
for (stack_line=0; stack_line<stack.length; stack_line++)
if (stack[stack_line]._eday<=ev._sday)
break;
ev._sorder=stack_line;
if (ev._sday+ev._length<=cols){
start_date=null;
out.push(ev);
stack[stack_line]=ev;
//get max height of slot
max[ev._sweek]=stack.length-1;
} else{ // split long event in chunks
var copy=this._copy_event(ev);
copy._length=cols-ev._sday;
copy._eday=cols; copy._sday=ev._sday;
copy._sweek=ev._sweek; copy._sorder=ev._sorder;
copy.end_date=this.date.add(sd,copy._length,"day");
out.push(copy);
stack[stack_line]=copy;
start_date=copy.end_date;
//get max height of slot
max[ev._sweek]=stack.length-1;
i--; continue; //repeat same step
}
};
return out;
};
scheduler._copy_dummy=function(){
this.start_date=new Date(this.start_date);
this.end_date=new Date(this.end_date);
};
scheduler._copy_event=function(ev){
this._copy_dummy.prototype = ev;
return new this._copy_dummy();
//return {start_date:ev.start_date, end_date:ev.end_date, text:ev.text, id:ev.id}
};
scheduler._rendered=[];
scheduler.clear_view=function(){
for (var i=0; i<this._rendered.length; i++){
var obj=this._rendered[i];
if (obj.parentNode) obj.parentNode.removeChild(obj);
}
this._rendered=[];
};
scheduler.updateEvent=function(id){
var ev=this.getEvent(id);
this.clear_event(id);
if (ev && this.is_visible_events(ev))
this.render_data([ev],true);
};
scheduler.clear_event=function(id){
this.for_rendered(id,function(node,i){
if (node.parentNode)
node.parentNode.removeChild(node);
scheduler._rendered.splice(i,1);
});
};
scheduler.render_event=function(ev){
var menu = scheduler.xy.menu_width;
if (ev._sday<0) return; //can occur in case of recurring event during time shift
var parent=scheduler.locate_holder(ev._sday);
if (!parent) return; //attempt to render non-visible event
var sm = ev.start_date.getHours()*60+ev.start_date.getMinutes();
var em = (ev.end_date.getHours()*60+ev.end_date.getMinutes())||(scheduler.config.last_hour*60);
var top = (Math.round((sm*60*1000-this.config.first_hour*60*60*1000)*this.config.hour_size_px/(60*60*1000)))%(this.config.hour_size_px*24)+1; //42px/hour
var height = Math.max(scheduler.xy.min_event_height,(em-sm)*this.config.hour_size_px/60)+1; //42px/hour
//var height = Math.max(25,Math.round((ev.end_date.valueOf()-ev.start_date.valueOf())*(this.config.hour_size_px+(this._quirks?1:0))/(60*60*1000))); //42px/hour
var width=Math.floor((parent.clientWidth-menu)/ev._count);
var left=ev._sorder*width+1;
if (!ev._inner) width=width*(ev._count-ev._sorder);
var d=this._render_v_bar(ev.id,menu+left,top,width,height,ev._text_style,scheduler.templates.event_header(ev.start_date,ev.end_date,ev),scheduler.templates.event_text(ev.start_date,ev.end_date,ev));
this._rendered.push(d);
parent.appendChild(d);
left=left+parseInt(parent.style.left,10)+menu;
top+=this._dy_shift; //corrupt top, to include possible multi-day shift
if (this._edit_id==ev.id){
d.style.zIndex = 1; //fix overlapping issue
width=Math.max(width-4,scheduler.xy.editor_width);
var d=document.createElement("DIV");
d.setAttribute("event_id",ev.id);
this.set_xy(d,width,height-20,left,top+14);
d.className="dhx_cal_editor";
var d2=document.createElement("DIV");
this.set_xy(d2,width-6,height-26);
d2.style.cssText+=";margin:2px 2px 2px 2px;overflow:hidden;";
d.appendChild(d2);
this._els["dhx_cal_data"][0].appendChild(d);
this._rendered.push(d);
d2.innerHTML="<textarea class='dhx_cal_editor'>"+ev.text+"</textarea>";
if (this._quirks7) d2.firstChild.style.height=height-12+"px"; //IEFIX
this._editor=d2.firstChild;
this._editor.onkeypress=function(e){
if ((e||event).shiftKey) return true;
var code=(e||event).keyCode;
if (code==scheduler.keys.edit_save) scheduler.editStop(true);
if (code==scheduler.keys.edit_cancel) scheduler.editStop(false);
};
this._editor.onselectstart=function(e){ return (e||event).cancelBubble=true; };
d2.firstChild.focus();
//IE and opera can add x-scroll during focusing
this._els["dhx_cal_data"][0].scrollLeft=0;
d2.firstChild.select();
}
if (this._select_id==ev.id){
//d.style.zIndex = 1; //fix overlapping issue
var icons=this.config["icons_"+((this._edit_id==ev.id)?"edit":"select")];
var icons_str="";
for (var i=0; i<icons.length; i++)
icons_str+="<div class='dhx_menu_icon "+icons[i]+"' title='"+this.locale.labels[icons[i]]+"'></div>";
var obj = this._render_v_bar(ev.id,left-menu+1,top,menu,icons.length*20+26,"","<div class='dhx_menu_head'></div>",icons_str,true);
obj.style.left=left-menu+1;
this._els["dhx_cal_data"][0].appendChild(obj);
this._rendered.push(obj);
}
};
scheduler._render_v_bar=function(id,x,y,w,h,style,contentA,contentB,bottom){
var d=document.createElement("DIV");
var ev = this.getEvent(id);
var cs = "dhx_cal_event";
var cse = scheduler.templates.event_class(ev.start_date,ev.end_date,ev);
if (cse) cs=cs+" "+cse;
var html='<div event_id="'+id+'" class="'+cs+'" style="position:absolute; top:'+y+'px; left:'+x+'px; width:'+(w-4)+'px; height:'+h+'px;'+(style||"")+'">';
html+='<div class="dhx_header" style=" width:'+(w-6)+'px;" >&nbsp;</div>';
html+='<div class="dhx_title">'+contentA+'</div>';
html+='<div class="dhx_body" style=" width:'+(w-(this._quirks?4:14))+'px; height:'+(h-(this._quirks?20:30))+'px;">'+contentB+'</div>';
html+='<div class="dhx_footer" style=" width:'+(w-8)+'px;'+(bottom?' margin-top:-1px;':'')+'" ></div></div>';
d.innerHTML=html;
return d.firstChild;
};
scheduler.locate_holder=function(day){
if (this._mode=="day") return this._els["dhx_cal_data"][0].firstChild; //dirty
return this._els["dhx_cal_data"][0].childNodes[day];
};
scheduler.locate_holder_day=function(date,past){
var day = Math.floor((this._correct_shift(date,1)-this._min_date)/(60*60*24*1000));
//when locating end data of event , we need to use next day if time part was defined
if (past && this.date.time_part(date)) day++;
return day;
};
scheduler.render_event_bar=function(ev){
var parent=this._els["dhx_cal_data"][0];
var x=this._colsS[ev._sday];
var x2=this._colsS[ev._eday];
if (x2==x) x2=this._colsS[ev._eday+1];
var hb = this.xy.bar_height;
var y=this._colsS.heights[ev._sweek]+(this._colsS.height?(this.xy.month_scale_height+2):2)+ev._sorder*hb;
var d=document.createElement("DIV");
var cs = ev._timed?"dhx_cal_event_clear":"dhx_cal_event_line";
var cse = scheduler.templates.event_class(ev.start_date,ev.end_date,ev);
if (cse) cs=cs+" "+cse;
var html='<div event_id="'+ev.id+'" class="'+cs+'" style="position:absolute; top:'+y+'px; left:'+x+'px; width:'+(x2-x-15)+'px;'+(ev._text_style||"")+'">';
if (ev._timed)
html+=scheduler.templates.event_bar_date(ev.start_date,ev.end_date,ev);
html+=scheduler.templates.event_bar_text(ev.start_date,ev.end_date,ev)+'</div>';
html+='</div>';
d.innerHTML=html;
this._rendered.push(d.firstChild);
parent.appendChild(d.firstChild);
};
scheduler._locate_event=function(node){
var id=null;
while (node && !id && node.getAttribute){
id=node.getAttribute("event_id");
node=node.parentNode;
}
return id;
};
scheduler.edit=function(id){
if (this._edit_id==id) return;
this.editStop(false,id);
this._edit_id=id;
this.updateEvent(id);
};
scheduler.editStop=function(mode,id){
if (id && this._edit_id==id) return;
var ev=this.getEvent(this._edit_id);
if (ev){
if (mode) ev.text=this._editor.value;
this._edit_id=null;
this._editor=null;
this.updateEvent(ev.id);
this._edit_stop_event(ev,mode);
}
};
scheduler._edit_stop_event=function(ev,mode){
if (this._new_event){
if (!mode) this.deleteEvent(ev.id,true);
else this.callEvent("onEventAdded",[ev.id,ev]);
this._new_event=null;
} else
if (mode) this.callEvent("onEventChanged",[ev.id,ev]);
};
scheduler.getEvents = function(from,to){
var result = [];
for (var a in this._events){
var ev = this._events[a];
if (ev && ev.start_date<to && ev.end_date>from)
result.push(ev);
}
return result;
};

View File

@ -0,0 +1,317 @@
.dhx_expand_icon {
position:absolute; top:0px; right:0px;
background-image:url(../codebase/imgs/colapce-expand-icon.gif);
width:18px; height:18px;
cursor:pointer;
background-position:0px 18px;
z-index:16;
}
.dhx_agenda_area{
width:100%;
height:100%;
overflow-y:auto;
background-image:url(../codebase/imgs/databg.png);
}
.dhx_agenda_line{
height:21px;
clear:both;
overflow:hidden;
}
.dhx_agenda_line div{
float:left;
width:188px;
border-right:1px dotted #8894A3;
text-align:center;
line-height:21px;
overflow:hidden;
}
.dhx_agenda_area .dhx_agenda_line div{
border-right:0px dotted #8894A3;
}
.dhx_v_border{
position:absolute; left:186px; top:0px;
border-right:1px dotted #8894A3;
width:1px;
height:100%;
}
.dhx_agenda_line .dhx_event_icon{
width:20px;
border-width:0px;
background:url(../codebase/imgs/icon.png) no-repeat;
background-position: 5px 4px;
cursor:pointer;
}
.dhx_agenda_line span{
padding-left:5px;
line-height:21px;
}
.dhx_year_body{
border-left:1px dotted #586A7E;
}
.dhx_year_week{
height:20px;
position:relative;
}
.dhx_scale_bar_last{
border-right:1px dotted #586A7E;
}
.dhx_year_month{
height:18px;
padding-top:3px;
border:1px dotted #586A7E;
text-align:center;
vertical-align:middle;
}
.dhx_year_body .dhx_before .dhx_month_head, .dhx_year_body .dhx_after .dhx_month_head, .dhx_year_body .dhx_before .dhx_month_head a, .dhx_year_body .dhx_after .dhx_month_head a{
color:#E2E3E6 !important;
}
.dhx_year_body .dhx_month_body{
height:0px;
overflow:hidden;
}
.dhx_month_head.dhx_year_event{
background-color:#FFE763;
}
.dhx_year_body .dhx_before .dhx_month_head, .dhx_year_body .dhx_after .dhx_month_head{
cursor: default;
}
.dhx_tooltip{
border:1px solid #BBBBBB;
background-image:url(../codebase/imgs/databg.png);
position:absolute;
z-index:9998;
width:300px;
height:auto;
font-family:Tahoma;
font-size:8pt;
overflow:hidden;
}
.dhx_tooltip_line{
line-height:20px;
height:20px;
overflow:hidden;
}
.dhx_tooltip_line .dhx_event_icon{
width:20px; height:20px;
padding-right:10px;
float:left;
border-width:0px;
position:relative;
background:url(../codebase/imgs/icon.png) no-repeat;
background-position: 5px 4px;
cursor:pointer;
}
.dhx_tooltip_date{
float:left;
width:auto;
padding-left:5px;
text-align:center;
}
.dhx_text_disabled{
color:#887A2E;
font-family:Tahoma;
font-size:8pt;
}
.dhx_mini_calendar{
-moz-box-shadow:5px 5px 5px #888; /*Doesn't work in IE*/
-khtml-box-shadow: 5px 5px 5px #888;
}
.dhx_mini_calendar .dhx_month_head{
cursor:pointer;
}
.dhx_mini_calendar .dhx_calendar_click{
background-color: #C2D5FC;
}
.dhx_cal_navline div.dhx_minical_icon{
width:18px;
height:18px;
left:190px;
top:1px;
cursor:pointer;
background-image:url(../imgs/calendar.gif);
}
.dhx_matrix_cell, .dhx_matrix_scell{
overflow:hidden;
text-align:center;
vertical-align:middle;
border-bottom:1px dotted #8894A3;
border-right:1px dotted #8894A3;
}
.dhx_matrix_cell{
background-color:white;
}
.dhx_matrix_cell div, .dhx_matrix_scell div{
overflow:hidden;
text-align:center;
width:100%;
height:auto;
}
.dhx_cal_lsection .dhx_readonly{
font-size:9pt;
font-size:8pt;
padding:2px;
color:#887A2E;
}
/* Tree view */
.dhx_matrix_scell.folder, .dhx_data_table.folder .dhx_matrix_cell{
background-color: #969394;
cursor: pointer;
}
.dhx_matrix_scell .dhx_scell_level0{
padding-left: 5px;
}
.dhx_matrix_scell .dhx_scell_level1{
padding-left: 20px;
}
.dhx_matrix_scell .dhx_scell_level2{
padding-left: 35px;
}
.dhx_matrix_scell.folder{
font-weight: bold;
text-align: left;
}
.dhx_matrix_scell.folder .dhx_scell_expand{
float: left;
width: 10px;
padding-right:3px;
}
.dhx_matrix_scell.folder .dhx_scell_name{
float: left;
width: auto;
}
.dhx_matrix_scell.item .dhx_scell_name{
padding-left:15px;
text-align: left;
}
.dhx_section_timeline, .dhx_section_timeline2{
overflow: hidden;
padding: 2px 0 2px 10px;
}
.dhx_section_timeline select, .dhx_section_timeline2 select{
width: 552px;
}
/* Tree view end*/
/* Map view */
.dhx_map_area{
width:100%;
height:100%;
overflow-y: auto;
overflow-x: hidden;
background-image:url(../codebase/imgs/databg.png);
}
.dhx_map_line .dhx_event_icon{
width:20px;
border-width:0px;
background:url(../codebase/imgs/icon.png) no-repeat;
background-position: 5px 4px;
cursor:pointer;
}
.dhx_map_line{
height:21px;
clear:both;
overflow:hidden;
}
.dhx_map {
position:absolute;
}
.dhx_map_line div{
float:left;
border-right:1px dotted #8894A3;
text-align:center;
line-height:21px;
overflow:hidden;
}
.dhx_map_line .headline_description{
float:left;
border-right:1px dotted #8894A3;
text-align:center;
line-height:21px;
overflow:hidden;
}
.dhx_map_line .dhx_map_description{
float:left;
border-right: 0px dotted #8894A3;
text-align:center;
line-height:21px;
overflow:hidden;
}
.dhx_map_line .line_description{
float:left;
border-right:1px dotted #8894A3;
text-align:left;
padding-left:5px;
line-height:21px;
overflow:hidden;
}
.dhx_map_line.highlight{
background-color: #C4C5CC;
}
.dhx_map_area .dhx_map_line div{
border-right:0px dotted #8894A3;
}
/* Map view end */
/* dhtmlXTooltip start */
.dhtmlXTooltip.tooltip{
-moz-box-shadow:3px 3px 3px #888888;
-khtml-box-shadow:3px 3px 3px #888888;
background-color:white;
border-left:1px dotted #887A2E;
border-top:1px dotted #887A2E;
color:#887A2E;
cursor:default;
padding:10px;
position:absolute;
z-index:500;
}
/* dhtmlXTooltip end */
/* Lightbox checkbox section */
.dhx_cal_checkbox label {
padding-left: 5px;
}
/* Lightbox checkbox section end */
/* Lightbox radiobuttons section */
.dhx_cal_light .radio {
padding: 2px 0px 2px 10px;
}
.dhx_cal_light .radio input, .dhx_cal_light .radio label{
line-height: 15px;
}
.dhx_cal_light .radio input {
vertical-align: middle;
margin: 0px;
padding: 0px;
}
.dhx_cal_light .radio label {
vertical-align: middle;
padding-right: 10px;
}
/* Lightbox radiobuttons section end */
/* Lightbox dhtmlx combo section */
.dhx_cal_light .combo {
padding: 4px;
}
/* Lightbox dhtmlx combo section end */

View File

@ -0,0 +1,21 @@
scheduler.attachEvent("onTemplatesReady",function(){
var s_d = scheduler.date.str_to_date(scheduler.config.api_date);
var d_s = scheduler.date.date_to_str(scheduler.config.api_date);
var month_x = scheduler.templates.month_day;
scheduler.templates.month_day=function(date){
return "<a jump_to='"+d_s(date)+"' href='#'>"+month_x(date)+"</a>";
}
var week_x = scheduler.templates.week_scale_date;
scheduler.templates.week_scale_date=function(date){
return "<a jump_to='"+d_s(date)+"' href='#'>"+week_x(date)+"</a>";
}
dhtmlxEvent(this._obj,"click",function(e){
var start = e.target || event.srcElement;
var to = start.getAttribute("jump_to");
if (to)
scheduler.setCurrentView(s_d(to),"day");
})
})

View File

@ -0,0 +1,93 @@
scheduler.date.add_agenda = function(date){
return (new Date(date.valueOf()));
}
scheduler.dblclick_dhx_agenda_area=function(){
if (!this.config.readonly && this.config.dblclick_create)
this.addEventNow();
}
scheduler.templates.agenda_time = function(start,end,ev){
if (ev._timed)
return this.day_date(ev.start_date, ev.end_date, ev)+" "+this.event_date(start);
else
return scheduler.templates.day_date(start)+" &ndash; "+scheduler.templates.day_date(end);
}
scheduler.templates.agenda_text = function(ev){
return ev.text;
}
scheduler.date.agenda_start=function(d){ return d; };
scheduler.attachEvent("onTemplatesReady",function(){
scheduler.attachEvent("onSchedulerResize",function(){
if (this._mode == "agenda"){
this.agenda_view(true);
return false;
}
return true;
});
var old = scheduler.render_data;
scheduler.render_data=function(evs){
if (this._mode == "agenda")
fill_agenda_tab();
else
return old.apply(this,arguments);
}
function set_full_view(mode){
if (mode){
var l = scheduler.locale.labels;
scheduler._els["dhx_cal_header"][0].innerHTML="<div class='dhx_agenda_line'><div>"+l.date+"</div><span style='padding-left:25px'>"+l.description+"</span></div>";
scheduler._table_view=true;
scheduler.set_sizes();
}
}
function fill_agenda_tab(){
//get current date
var date = scheduler._date;
//select events for which data need to be printed
var events = scheduler.get_visible_events();
events.sort(function(a,b){ return a.start_date>b.start_date?1:-1});
//generate html for the view
var html="<div class='dhx_agenda_area'>";
for (var i=0; i<events.length; i++){
html+="<div class='dhx_agenda_line' event_id='"+events[i].id+"' style='"+(events[i]._text_style||"")+"'><div>"+scheduler.templates.agenda_time(events[i].start_date, events[i].end_date,events[i])+"</div>";
html+="<div class='dhx_event_icon icon_details'>&nbsp</div>";
html+="<span>"+scheduler.templates.agenda_text(events[i])+"</span></div>";
}
html+="<div class='dhx_v_border'></div></div>";
//render html
scheduler._els["dhx_cal_data"][0].scrollTop = 0; //fix flickering in FF
scheduler._els["dhx_cal_data"][0].innerHTML = html;
var t=scheduler._els["dhx_cal_data"][0].firstChild.childNodes;
scheduler._els["dhx_cal_date"][0].innerHTML="";
scheduler._rendered=[];
for (var i=0; i < t.length-1; i++)
scheduler._rendered[i]=t[i]
}
scheduler.agenda_view=function(mode){
scheduler._min_date = scheduler.config.agenda_start||(new Date());
scheduler._max_date = scheduler.config.agenda_end||(new Date(9999,1,1));
scheduler._table_view = true;
set_full_view(mode);
if (mode){
//agenda tab activated
fill_agenda_tab();
} else {
//agenda tab de-activated
}
}
})

View File

@ -0,0 +1,100 @@
(function(){
var temp_section,temp_time;
var before;
scheduler.config.collision_limit = 1;
scheduler.attachEvent("onBeforeDrag",function(id){
var pr = scheduler._props?scheduler._props[this._mode]:null;
var matrix = scheduler.matrix?scheduler.matrix[this._mode]:null;
var checked_mode = pr||matrix;
if(pr)
var map_to = checked_mode.map_to;
if(matrix)
var map_to = checked_mode.y_property;
if ((checked_mode) && id){
temp_section = this.getEvent(id)[map_to];
temp_time = this.getEvent(id).start_date;
}
return true;
});
scheduler.attachEvent("onBeforeLightbox",function(id){
var ev = scheduler.getEvent(id);
before = [ev.start_date, ev.end_date];
return true;
});
scheduler.attachEvent("onEventChanged",function(id){
if (!id) return true;
var ev = scheduler.getEvent(id);
if (!collision_check(ev)){
if (!before) return false;
ev.start_date = before[0];
ev.end_date = before[1];
ev._timed=this.is_one_day_event(ev);
};
return true;
});
scheduler.attachEvent("onBeforeEventChanged",function(ev,e,is_new){
return collision_check(ev);
});
scheduler.attachEvent("onEventSave",function(id, edited_ev){
//var ev = scheduler.getEvent(id);
if(edited_ev.rec_type)
scheduler._roll_back_dates(edited_ev);
return collision_check(edited_ev);
});
function collision_check(ev){
var evs = [];
if (ev.rec_type) {
var evs_dates = scheduler.getRecDates(ev);
for(var k=0; k<evs_dates.length; k++) {
var tevs = scheduler.getEvents(evs_dates[k].start_date, evs_dates[k].end_date);
for(var j=0; j<tevs.length; j++) {
if ((tevs[j].event_pid || tevs[j].id) != ev.id )
evs.push(tevs[j]);
}
}
evs.push(ev);
} else {
evs = scheduler.getEvents(ev.start_date, ev.end_date);
}
var pr = scheduler._props?scheduler._props[scheduler._mode]:null;
var matrix = scheduler.matrix?scheduler.matrix[scheduler._mode]:null;
var checked_mode = pr||matrix;
if(pr)
var map_to = checked_mode.map_to;
if(matrix)
var map_to = checked_mode.y_property;
var single = true;
if (checked_mode) {
var count = 0;
for (var i = 0; i < evs.length; i++)
if (evs[i][map_to] == ev[map_to])
count++;
if (count > scheduler.config.collision_limit) {
scheduler._drag_event.start_date = temp_time;
ev[map_to] = temp_section;
single = false;
}
}
else {
if (evs.length > scheduler.config.collision_limit)
single = false;
}
if (!single) return !scheduler.callEvent("onEventCollision",[ev,evs]);
return single;
};
})();

View File

@ -0,0 +1,36 @@
(function(){
function setCookie(name,cookie_param,value) {
var str = name + "=" + value + (cookie_param?("; "+cookie_param):"");
document.cookie = str;
}
function getCookie(name) {
var search = name + "=";
if (document.cookie.length > 0) {
var offset = document.cookie.indexOf(search);
if (offset != -1) {
offset += search.length;
var end = document.cookie.indexOf(";", offset);
if (end == -1)
end = document.cookie.length;
return document.cookie.substring(offset, end);
}
}
return "";
}
var first = true;
scheduler.attachEvent("onBeforeViewChange",function(om,od,m,d){
if (first){
first = false;
var data=getCookie("scheduler_settings");
if (data){
data = data.split("@");
data[0] = this.templates.xml_date(data[0]);
this.setCurrentView(data[0],data[1]);
return false;
}
}
var text = this.templates.xml_format(d||od)+"@"+(m||om);
setCookie("scheduler_settings","expires=Sun, 31 Jan 9999 22:00:00 GMT",text);
return true;
});
})();

View File

@ -0,0 +1,95 @@
scheduler.form_blocks['combo']={
render:function(sns) {
var res = '';
res += "<div class='"+sns.type+"' style='height:"+(sns.height||20)+"px;' ></div>";
return res;
},
set_value:function(node,value,ev,config){
if(node._combo) {
node._combo.destructor();
}
window.dhx_globalImgPath = config.image_path||'/';
node._combo = new dhtmlXCombo(node, config.name, node.offsetWidth-8);
node._combo.enableFilteringMode(!!config.filtering, config.script_path||null, !!config.cache);
if (!config.script_path) { // script-side filtration is used
var all_options = [];
for (var i = 0; i < config.options.length; i++) {
var single_option = [];
single_option.push(config.options[i].key);
single_option.push(config.options[i].label);
all_options.push(single_option);
}
node._combo.addOption(all_options);
if (ev[config.map_to]) {
var index = node._combo.getIndexByValue(ev[config.map_to]);
node._combo.selectOption(index);
}
} else { // server-side filtration is used
node._combo.setComboValue(ev[config.map_to]||null);
}
},
get_value:function(node,ev,config){
var selected_id = node._combo.getSelectedValue(); // value = key
return selected_id;
},
focus:function(node){
}
};
scheduler.form_blocks['radio']={
render:function(sns) {
var res = '';
res += "<div class='"+sns.type+"' style='height:"+sns.height+"px;' >";
for (var i=0; i<sns.options.length; i++) {
var id = scheduler.uid();
res += "<input id='"+id+"' type='radio' name='"+sns.name+"' value='"+sns.options[i].key+"'><label for='"+id+"'>"+" "+sns.options[i].label+"</label>";
if(sns.vertical)
res += "<br/>";
}
res += "</div>";
return res;
},
set_value:function(node,value,ev,config){
var radiobuttons = node.getElementsByTagName('input');
for (var i = 0; i < radiobuttons.length; i++) {
radiobuttons[i].checked = false;
if (radiobuttons[i].value == ev[config.map_to]) {
radiobuttons[i].checked = true;
}
}
},
get_value:function(node,ev,config){
var radiobuttons = node.getElementsByTagName('input');
for(var i=0; i<radiobuttons.length; i++) {
if(radiobuttons[i].checked) {
return radiobuttons[i].value;
}
}
},
focus:function(node){
}
};
scheduler.form_blocks['checkbox']={
render:function(sns) {
return '';
},
set_value:function(node,value,ev,config){
var id = scheduler.uid();
var isChecked = false;
if (typeof config.checked_value != 'undefined' && ev[config.map_to] == config.checked_value) {
isChecked = true;
}
node.previousSibling.className += " dhx_cal_checkbox";
node.previousSibling.innerHTML="<input id='"+id+"' type='checkbox' value='true' name='"+config.name+"'"+((isChecked)?"checked='true'":'')+"'><label for='"+id+"'>"+(scheduler.locale.labels["section_"+config.name]||config.name)+"</label>";
},
get_value:function(node,ev,config){
var checkbox = node.previousSibling.getElementsByTagName('input')[0]; // moved to the header
return (checkbox.checked)?(config.checked_value||true):(config.unchecked_value||false);
},
focus:function(node){
}
};

View File

@ -0,0 +1,54 @@
scheduler.expand = function(){
var t = scheduler._obj;
do {
t._position = t.style.position||"";
t.style.position = "static";
} while ((t = t.parentNode) && t.style );
t = scheduler._obj;
t.style.position="absolute";
t._width = t.style.width;
t._height = t.style.height;
t.style.width = t.style.height = "100%";
t.style.top = t.style.left = "0px";
var top =document.body;
top.scrollTop = 0;
top = top.parentNode;
if (top)
top.scrollTop = 0;
document.body._overflow=document.body.style.overflow||"";
document.body.style.overflow = "hidden";
scheduler._maximize()
}
scheduler.collapse = function(){
var t = scheduler._obj;
do {
t.style.position = t._position;
} while ((t = t.parentNode) && t.style );
t = scheduler._obj;
t.style.width = t._width;
t.style.height = t._height;
document.body.style.overflow=document.body._overflow;
scheduler._maximize()
}
scheduler.attachEvent("onTemplatesReady",function(){
var t = document.createElement("DIV");
t.className="dhx_expand_icon";
scheduler.toggleIcon = t;
scheduler._obj.appendChild(t);
t.onclick = function(){
if (!scheduler.expanded)
scheduler.expand();
else
scheduler.collapse();
}
});
scheduler._maximize = function(){
this.expanded = !this.expanded;
this.toggleIcon.style.backgroundPosition="0px "+(this._expand?"0":"18")+"px";
if (scheduler.callEvent("onSchedulerResize",[]))
scheduler.update_view();
}

View File

@ -0,0 +1,15 @@
scheduler.attachEvent("onTemplatesReady",function(){
var els = document.body.getElementsByTagName("DIV");
for (var i=0; i < els.length; i++) {
var cs = els[i].className||"";
cs = cs.split(":");
if (cs.length == 2 && cs[0] == "template"){
var code = "return \""+(els[i].innerHTML||"").replace(/\"/g,"\\\"").replace(/[\n\r]+/g,"")+"\";";
code = unescape(code).replace(/\{event\.([a-z]+)\}/g,function(all,mask){
return '"+ev.'+mask+'+"';
});
scheduler.templates[cs[1]]=Function("start","end","ev",code);
els[i].style.display='none';
}
};
})

View File

@ -0,0 +1,32 @@
//Initial idea and implementation by Steve MC
(function (){
var lightboxopen = false;
scheduler.attachEvent("onBeforeLightbox",function(){ lightboxopen = true; return true; });
scheduler.attachEvent("onAfterLightbox",function(){ lightboxopen = false; return true; });
dhtmlxEvent(document,(_isOpera?"keypress":"keydown"),function(e){
e=e||event;
if (!lightboxopen){
if (e.keyCode == 37 || e.keyCode == 39) { // Left-Arrow
e.cancelBubble = true;
var next = scheduler.date.add(scheduler._date,(e.keyCode == 37 ? -1 : 1 ),scheduler._mode);
scheduler.setCurrentView(next);
return true;
} else if (e.ctrlKey && e.keyCode == 67){
scheduler._copy_id = scheduler._select_id;
} else if (e.ctrlKey && e.keyCode == 86){
var ev = scheduler.getEvent(scheduler._copy_id);
if (ev){
var new_ev = scheduler._copy_event(ev);
new_ev.id = scheduler.uid();
scheduler.addEvent(new_ev);
}
}
}
});
})();

View File

@ -0,0 +1,78 @@
scheduler.config.limit_start = new Date(-3999,0,0);
scheduler.config.limit_end = new Date( 3999,0,0);
scheduler.config.limit_view = false;
(function(){
var before = null;
scheduler.attachEvent("onBeforeViewChange",function(om,od,nm,nd){
nd = nd||od; nm = nm||om;
if (scheduler.config.limit_view){
if (nd.valueOf()>scheduler.config.limit_end.valueOf() || this.date.add(nd,1,nm)<=scheduler.config.limit_start.valueOf()){
setTimeout(function(){
scheduler.setCurrentView(scheduler._date, nm);
},1);
return false;
}
}
return true;
});
var blocker = function(ev){
var c = scheduler.config;
var res = (ev.start_date.valueOf() >= c.limit_start.valueOf() && ev.end_date.valueOf() <= c.limit_end.valueOf());
if (!res) {
scheduler._drag_id = null;
scheduler._drag_mode = null;
scheduler.callEvent("onLimitViolation",[ev.id, ev]);
}
return res;
};
scheduler.attachEvent("onBeforeDrag",function(id){
if (!id) return true;
return blocker(scheduler.getEvent(id));
});
scheduler.attachEvent("onClick", function (event_id, native_event_object){
return blocker(scheduler.getEvent(event_id));
});
scheduler.attachEvent("onBeforeLightbox",function(id){
var ev = scheduler.getEvent(id);
before = [ev.start_date, ev.end_date];
return blocker(ev);
});
scheduler.attachEvent("onEventAdded",function(id){
if (!id) return true;
var ev = scheduler.getEvent(id);
if (!blocker(ev)){
if (ev.start_date < scheduler.config.limit_start) {
ev.start_date = new Date(scheduler.config.limit_start);
}
if (ev.end_date > scheduler.config.limit_end) {
ev.end_date = new Date(scheduler.config.limit_end);
// as end date was changed need to recheck if event occuring during one day
ev._timed = this.is_one_day_event(ev);
}
// in case if both start and end date were specified < scheduler.config.limit_star
if (ev.start_date > ev.end_date) {
ev.end_date = this.date.add(ev.start_date, (this.config.event_duration||this.config.time_step), "minute");
}
}
return true;
});
scheduler.attachEvent("onEventChanged",function(id){
if (!id) return true;
var ev = scheduler.getEvent(id);
if (!blocker(ev)){
if (!before) return false;
ev.start_date = before[0];
ev.end_date = before[1];
ev._timed=this.is_one_day_event(ev);
};
return true;
});
scheduler.attachEvent("onBeforeEventChanged",function(ev, native_object, is_new){
return blocker(ev);
});
})();

View File

@ -0,0 +1,396 @@
scheduler.xy.map_date_width = 188; // date column width
scheduler.xy.map_description_width = 400; // description column width
scheduler.config.map_resolve_event_location = true; // if events in database doesn't have lat and lng values there will be an attempt to resolve them on event loading, useful for migration
scheduler.config.map_resolve_user_location = true; // if user will be promted to share his location to display it on the map
scheduler.config.map_initial_position = new google.maps.LatLng(48.724, 8.215); // inital position of the map
scheduler.config.map_error_position = new google.maps.LatLng(15, 15); // this position will be displayed in case if event doesn't have corresponding coordinates
scheduler.config.map_infowindow_max_width = 300;
scheduler.config.map_type = google.maps.MapTypeId.ROADMAP;
scheduler.config.map_zoom_after_resolve = 15;
scheduler.locale.labels.marker_geo_success = "It seems you are here.";
scheduler.locale.labels.marker_geo_fail = "Sorry, could not get your current position using geolocation.";
scheduler.templates.marker_date=scheduler.date.date_to_str("%Y-%m-%d %H:%i"); // date for map's infowindow will be formated following way
scheduler.templates.marker_text=function(start, end, ev){
return "<div><b>"+ev.text+"</b><br/><br/>"+(ev.event_location||'')+"<br/><br/>"+scheduler.templates.marker_date(start)+" - "+scheduler.templates.marker_date(end)+"</div>";
};
scheduler.dblclick_dhx_map_area=function(){
if (!this.config.readonly && this.config.dblclick_create)
this.addEventNow();
};
scheduler.templates.map_time = function(start,end,ev){
if (ev._timed)
return this.day_date(ev.start_date, ev.end_date, ev)+" "+this.event_date(start);
else
return scheduler.templates.day_date(start)+" &ndash; "+scheduler.templates.day_date(end);
};
scheduler.templates.map_text = function(ev){
return ev.text;
};
scheduler.date.map_start=function(d){ return d; };
scheduler.attachEvent("onTemplatesReady",function(){
function _append_map() {
_isPositionSet = false; // if user actual (geolocation) position was set on the map
var gmap = document.createElement('div');
gmap.className='dhx_map';
gmap.id='dhx_gmap';
gmap.style.dispay = "none";
node = document.getElementById('scheduler_here');
node.appendChild(gmap);
scheduler._els.dhx_gmap = [];
scheduler._els.dhx_gmap.push(gmap);
_setMapSize('dhx_gmap');
var mapOptions = {
zoom: scheduler.config.map_inital_zoom || 10,
center: scheduler.config.map_initial_position,
mapTypeId: scheduler.config.map_type||google.maps.MapTypeId.ROADMAP
};
map = new google.maps.Map(document.getElementById('dhx_gmap'), mapOptions);
map.disableDefaultUI = false;
map.disableDoubleClickZoom = true;
google.maps.event.addListener(map, "dblclick", function(event) {
if (!scheduler.config.readonly && scheduler.config.dblclick_create) {
point = event.latLng;
geocoder.geocode(
{ 'latLng': point },
function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
point = results[0].geometry.location;
scheduler.addEventNow({
lat: point.lat(),
lng: point.lng(),
event_location: results[0].formatted_address
});
}
}
);
}
});
var infoWindowOptions = {
content: ''
};
if (scheduler.config.map_infowindow_max_width) {
infoWindowOptions.maxWidth = scheduler.config.map_infowindow_max_width;
}
scheduler.map = {
_points: [],
_markers: [],
_infowindow: new google.maps.InfoWindow(infoWindowOptions),
_infowindows_content: [],
_initialization_count: -1
};
geocoder = new google.maps.Geocoder();
if(scheduler.config.map_resolve_user_location) {
if(navigator.geolocation) {
if(!_isPositionSet) {
navigator.geolocation.getCurrentPosition(function(position) {
var _userLocation = new google.maps.LatLng(position.coords.latitude,position.coords.longitude);
map.setCenter(_userLocation);
map.setZoom(scheduler.config.map_zoom_after_resolve||10);
scheduler.map._infowindow.setContent(scheduler.locale.labels.marker_geo_success);
scheduler.map._infowindow.position = map.getCenter();
scheduler.map._infowindow.open(map);
_isPositionSet = true;
},
function() {
scheduler.map._infowindow.setContent(scheduler.locale.labels.marker_geo_fail);
scheduler.map._infowindow.setPosition(map.getCenter());
scheduler.map._infowindow.open(map);
_isPositionSet = true;
});
}
}
}
google.maps.event.addListener(map, "resize", function(event) {
gmap.style.zIndex='5';
map.setZoom( map.getZoom() );
});
google.maps.event.addListener(map, "tilesloaded", function(event) {
gmap.style.zIndex='5';
});
}
_append_map();
scheduler.attachEvent("onSchedulerResize",function(){
if (this._mode == "map"){
this.map_view(true);
}
});
var old = scheduler.render_data;
scheduler.render_data=function(evs,hold){
if (this._mode == "map") {
fill_map_tab();
var events = scheduler.get_visible_events();
for(var i=0; i<events.length; i++) {
if(!scheduler.map._markers[events[i].id]) {
showAddress(events[i],false,false);
}
}
} else
return old.apply(this,arguments);
};
function set_full_view(mode){
if (mode){
var l = scheduler.locale.labels;
scheduler._els["dhx_cal_header"][0].innerHTML="<div class='dhx_map_line' style='width: "+(scheduler.xy.map_date_width+scheduler.xy.map_description_width+2)+"px;' ><div style='width: "+scheduler.xy.map_date_width+"px;'>"+l.date+"</div><div class='headline_description' style='width: "+scheduler.xy.map_description_width+"px;'>"+l.description+"</div></div>";
scheduler._table_view=true;
scheduler.set_sizes();
}
}
function fill_map_tab(){
//get current date
var date = scheduler._date;
//select events for which data need to be printed
var events = scheduler.get_visible_events();
events.sort(function(a,b){ return a.start_date>b.start_date?1:-1; });
//generate html for the view
var html="<div class='dhx_map_area'>";
for (var i=0; i<events.length; i++){
var event_class = (events[i].id == scheduler._selected_event_id)?'dhx_map_line highlight':'dhx_map_line';
html+="<div class='"+event_class+"' event_id='"+events[i].id+"' style='"+(events[i]._text_style||"")+" width: "+(scheduler.xy.map_date_width+scheduler.xy.map_description_width+2)+"px;'><div style='width: "+scheduler.xy.map_date_width+"px;' >"+scheduler.templates.map_time(events[i].start_date, events[i].end_date,events[i])+"</div>";
html+="<div class='dhx_event_icon icon_details'>&nbsp</div>";
html+="<div class='line_description' style='width:"+(scheduler.xy.map_description_width-25)+"px;'>"+scheduler.templates.map_text(events[i])+"</div></div>"; // -25 = icon size 20 and padding 5
}
html+="<div class='dhx_v_border' style='left: "+(scheduler.xy.map_date_width-2)+"px;'></div><div class='dhx_v_border_description'></div></div>";
//render html
scheduler._els["dhx_cal_data"][0].scrollTop = 0; //fix flickering in FF
scheduler._els["dhx_cal_data"][0].innerHTML = html;
scheduler._els["dhx_cal_data"][0].style.width = (scheduler.xy.map_date_width + scheduler.xy.map_description_width + 1) + 'px';
var t=scheduler._els["dhx_cal_data"][0].firstChild.childNodes;
scheduler._els["dhx_cal_date"][0].innerHTML="";
scheduler._rendered=[];
for (var i=0; i < t.length-2; i++) {
scheduler._rendered[i]=t[i];
}
}
function _setMapSize(elem_id) { //input - map's div id
var map = document.getElementById(elem_id);
map.style.height = (scheduler._y - scheduler.xy.nav_height) + 'px';
map.style.width = (scheduler._x - scheduler.xy.map_date_width - scheduler.xy.map_description_width - 1) + 'px';
map.style.marginLeft = (scheduler.xy.map_date_width + scheduler.xy.map_description_width + 1) + 'px';
map.style.marginTop = (scheduler.xy.nav_height + 2) + 'px';
}
scheduler.map_view=function(mode){
scheduler.map._initialization_count++;
var gmap = scheduler._els.dhx_gmap[0];
scheduler._els.dhx_cal_data[0].style.width = (scheduler.xy.map_date_width + scheduler.xy.map_description_width + 1) + 'px';
scheduler._min_date = scheduler.config.map_start||(new Date());
scheduler._max_date = scheduler.config.map_end||(new Date(9999,1,1));
scheduler._table_view = true;
set_full_view(mode);
if (mode){ //map tab activated
fill_map_tab();
gmap.style.display = 'block';
// need to resize block everytime window is resized
_setMapSize('dhx_gmap');
var events = scheduler.get_visible_events();
for(var i=0; i<events.length; i++) {
if(!scheduler.map._markers[events[i].id]) {
showAddress(events[i]);
}
}
} else { //map tab de-activated
gmap.style.display = 'none';
}
google.maps.event.trigger(map, 'resize');
if(scheduler.map._initialization_count === 0) { // if tab is activated for the first time need to fix position
map.setCenter(scheduler.config.map_initial_position);
}
};
function showAddress(event, setCenter, performClick) { // what if event have incorrect position from the start?
if(event.lat && event.lng) {
var point = new google.maps.LatLng(event.lat,event.lng);
} else {
var point = scheduler.config.map_error_position;
}
var message = scheduler.templates.marker_text(event.start_date, event.end_date, event);
if(!scheduler._new_event) {
scheduler.map._markers[event.id]= new google.maps.Marker({
position: point,
map: map
});
scheduler.map._infowindows_content[event.id] = message;
google.maps.event.addListener(scheduler.map._markers[event.id], 'click', function() {
scheduler.map._infowindow.setContent(scheduler.map._infowindows_content[event.id]);
scheduler.map._infowindow.open(map,scheduler.map._markers[event.id]);
scheduler._selected_event_id = event.id;
scheduler.render_data();
});
scheduler.map._points[event.id]=point;
if(setCenter) map.setCenter(scheduler.map._points[event.id]);
if(performClick) scheduler.callEvent("onClick", [event.id]);
}
}
scheduler.attachEvent("onClick",function(event_id, native_event_object){
if (this._mode == "map"){
scheduler._selected_event_id = event_id;
for(var i=0; i<scheduler._rendered.length; i++) {
scheduler._rendered[i].className='dhx_map_line';
if(scheduler._rendered[i].getAttribute("event_id") == event_id) {
scheduler._rendered[i].className += " highlight";
}
}
if(scheduler.map._points[event_id] && scheduler.map._markers[event_id]) {
map.panTo(scheduler.map._points[event_id]);
google.maps.event.trigger(scheduler.map._markers[event_id], 'click');
}
}
return true;
});
_displayEventOnMap = function(event) {
if (event.event_location && geocoder) {
geocoder.geocode(
{ 'address': event.event_location },
function(results, status) {
var point = {};
if (status != google.maps.GeocoderStatus.OK) {
point = scheduler.callEvent("onLocationError",[event.id]);
if (!point || point === true)
point = scheduler.config.map_error_position;
} else {
point = results[0].geometry.location;
}
event.lat = point.lat();
event.lng = point.lng();
scheduler._selected_event_id = event.id;
showAddress(event, true, true);
dp.setUpdated(event.id, true, "updated");
}
);
} else {
showAddress(event, true, true);
}
};
_updateEventLocation = function(event) { // update lat and lng in database
if (event.event_location && geocoder) {
geocoder.geocode(
{ 'address': event.event_location },
function(results, status) {
var point = {};
if (status != google.maps.GeocoderStatus.OK) {
point = scheduler.callEvent("onLocationError",[event.id]);
if (!point || point === true)
point = scheduler.config.map_error_position;
} else {
point = results[0].geometry.location;
}
event.lat = point.lat();
event.lng = point.lng();
dp.setUpdated(event.id, true, "updated");
}
);
}
};
_delay = function(method, object, params, delay) {
setTimeout(function(){
var ret = method.apply(object,params);
method = obj = params = null;
return ret;
},delay||1000);
};
scheduler.attachEvent("onEventChanged", function(event_id,event_object){
if(scheduler.is_visible_events(scheduler.getEvent(event_id))) {
scheduler.map._markers[event_id].setMap(null);
var event = scheduler.getEvent(event_id);
_displayEventOnMap(event);
} else {
scheduler.map._infowindow.close();
scheduler.map._markers[event_id].setMap(null);
}
return true;
});
scheduler.attachEvent("onEventIdChange", function(old_event_id,new_event_id){
if(scheduler.is_visible_events(scheduler.getEvent(new_event_id))) {
if(scheduler.map._markers[old_event_id]) scheduler.map._markers[old_event_id].setMap(null);
var event = scheduler.getEvent(new_event_id);
_displayEventOnMap(event);
}
return true;
});
/* Test/example
scheduler.attachEvent("onLocationError", function(event_id,event_object){
return new google.maps.LatLng(8, 8);
});
*/
scheduler.attachEvent("onBeforeEventDelete", function(event_id,event_object){
if (scheduler.map._markers[event_id]) {
scheduler.map._markers[event_id].setMap(null); // if new event is deleted tab != map then it doesn't have marker yet
}
scheduler.map._infowindow.close();
return true;
});
scheduler._event_resolve_delay = 500;
scheduler.attachEvent("onEventLoading", function(event){
if(scheduler.config.map_resolve_event_location && event.event_location && !event.lat && !event.lng) { // don't delete !event.lat && !event.lng as location could change
scheduler._event_resolve_delay += 500;
_delay(_updateEventLocation,this,[event], scheduler._event_resolve_delay);
}
return true;
});
scheduler.attachEvent("onEventCancel", function(event_id, is_new){
if(is_new) {
if(scheduler.map._markers[event_id])
scheduler.map._markers[event_id].setMap(null);
scheduler.map._infowindow.close();
}
return true;
});
});

View File

@ -0,0 +1,573 @@
(function(){
scheduler.matrix = {};
scheduler._merge=function(a,b){
for (var c in b)
if (typeof a[c] == "undefined")
a[c]=b[c];
};
scheduler.createTimelineView=function(obj){
scheduler._merge(obj,{
section_autoheight: true,
name:"matrix",
x:"time",
y:"time",
x_step:1,
x_unit:"hour",
y_unit:"day",
y_step:1,
x_start:0,
x_size:24,
y_start:0,
y_size: 7,
render:"cell",
dx:200,
dy:50,
_logic: function(render_name, y_unit, timeline) {
var res = {};
if(scheduler.checkEvent("onBeforeViewRender")) {
res = scheduler.callEvent("onBeforeViewRender", [render_name, y_unit, timeline]);
}
return res;
}
});
if (scheduler.checkEvent("onTimelineCreated")) {
scheduler.callEvent("onTimelineCreated", [obj]);
}
//init custom wrappers
scheduler[obj.name+"_view"]=function(){
scheduler.renderMatrix.apply(obj, arguments);
};
var old = scheduler.render_data;
scheduler.render_data=function(evs, mode){
if (this._mode == obj.name){
if (mode) //repaint single event, precision is not necessary
for (var i=0; i < evs.length; i++) {
this.clear_event(evs[i]);
this.render_timeline_event.call(this.matrix[this._mode], evs[i], 0, true);
}
else
set_full_view.call(obj,true);
} else
return old.apply(this,arguments);
};
scheduler.matrix[obj.name]=obj;
scheduler.templates[obj.name+"_cell_value"] = function(ar){ return ar?ar.length:""; };
scheduler.templates[obj.name+"_cell_class"] = function(ar){ return ""; };
scheduler.templates[obj.name+"_scalex_class"] = function(ar){ return ""; };
scheduler.templates[obj.name+"_scaley_class"] = function(section_id, section_label, section_options){ return "class"; };
scheduler.templates[obj.name+"_scale_label"] = function(section_id, section_label, section_options){ return section_label; };
scheduler.templates[obj.name+"_tooltip"] = function(a,b,e){ return e.text; };
scheduler.templates[obj.name+"_date"] = function(datea, dateb){
if (datea.getDay()==dateb.getDay() && datea-dateb<(24*60*60*1000))
return scheduler.templates.day_date(datea);
return scheduler.templates.week_date(datea, dateb);
};
scheduler.templates[obj.name+"_scale_date"] = scheduler.date.date_to_str(obj.x_date||scheduler.config.hour_date);
scheduler.date["add_"+obj.name]=function(a,b,c){
return scheduler.date.add(a,(obj.x_length||obj.x_size)*b*obj.x_step,obj.x_unit);
};
// note this is not correct start_date as it doesn't take into account x_start value (though scheduler._min_date is correct)
scheduler.date[obj.name+"_start"] = scheduler.date[obj.x_unit+"_start"] || scheduler.date.day_start;
scheduler.attachEvent("onSchedulerResize",function(){
if (this._mode == obj.name){
set_full_view.call(obj,true);
return false;
}
return true;
});
scheduler.attachEvent("onOptionsLoad",function(){
obj.order = {};
for(var i=0; i<obj.y_unit.length;i++)
obj.order[obj.y_unit[i].key]=i;
if(obj.name == scheduler._mode) {
if (scheduler._date)
scheduler.setCurrentView(scheduler._date, scheduler._mode);
}
});
scheduler.callEvent("onOptionsLoad",[obj]);
//enable drag for non-cell modes
if (obj.render != "cell"){
var temp_date = new Date();
var step_diff = (scheduler.date.add(temp_date, 1, obj.x_unit).valueOf() - temp_date.valueOf());
scheduler["mouse_"+obj.name]=function(pos){ //mouse_coord handler
//get event object
var ev = this._drag_event;
if (this._drag_id){
ev = this.getEvent(this._drag_id);
this._drag_event._dhx_changed = true;
}
pos.x-=obj.dx;
//scheduler.date.date_part(ev.start_date);
var summ = 0, xind = 0, yind = 0;
for (xind; xind < this._cols.length-1; xind++) {
summ+=this._cols[xind];
if (summ>pos.x){ //index of section
break;
}
}
summ = 0;
for (yind; yind < this._colsS.heights.length; yind++) {
summ+=this._colsS.heights[yind];
if (summ>pos.y)
break;
}
pos.fields={};
pos.fields[obj.y_property] = ev[obj.y_property] = obj.y_unit[yind].key;
pos.x = yind/10000000; //force rendering when section changes
if (this._drag_mode == "new-size" && ev.start_date*1==this._drag_start*1) {
xind++;
}
if(xind >= obj._trace_x.length) { // if our event is at the end of the view
var end_date = scheduler.date.add(obj._trace_x[obj._trace_x.length-1], obj.x_step, obj.x_unit);
} else {
var end_date = obj._trace_x[xind];
}
pos.y = Math.round((end_date-this._min_date)/(1000*60*this.config.time_step));
pos.custom = true;
pos.shift = step_diff;
return pos;
};
}
};
scheduler.render_timeline_event = function(ev, stack, attach){
var x_start = _getX(ev, false, this._step);
var x_end = _getX(ev, true, this._step);
var hb = scheduler.xy.bar_height;
var y = 2+stack*hb;
var cs = scheduler.templates.event_class(ev.start_date,ev.end_date,ev);
cs = "dhx_cal_event_line "+(cs||"");
var html='<div event_id="'+ev.id+'" class="'+cs+'" style="position:absolute; top:'+y+'px; left:'+x_start+'px; width:'+Math.max(0,x_end-x_start)+'px;'+(ev._text_style||"")+'">'+scheduler.templates.event_bar_text(ev.start_date,ev.end_date,ev)+'</div>';
if (!attach)
return html;
else {
var d = document.createElement("DIV");
d.innerHTML = html;
var ind = this.order[ev[this.y_property]];
var parent = scheduler._els["dhx_cal_data"][0].firstChild.rows[ind].cells[1].firstChild;
scheduler._rendered.push(d.firstChild);
parent.appendChild(d.firstChild);
}
};
function trace_events(){
//minimize event set
var evs = scheduler.getEvents(scheduler._min_date, scheduler._max_date);
var matrix =[];
for (var i=0; i < this.y_unit.length; i++)
matrix[i]=[];
//next code defines row for undefined key
//most possible it is an artifact of incorrect configuration
if (!matrix[y])
matrix[y]=[];
for (var i=0; i < evs.length; i++) {
var y = this.order[evs[i][this.y_property]];
var x = 0;
while (this._trace_x[x+1] && evs[i].start_date>=this._trace_x[x+1]) x++;
while (this._trace_x[x] && evs[i].end_date>this._trace_x[x]) {
if (!matrix[y][x]) matrix[y][x]=[];
matrix[y][x].push(evs[i]);
x++;
}
}
return matrix;
}
// function used to get X (both start and end) coordinates for timeline bar view
function _getX(ev, isEndPoint, step) {
var x = 0;
var date = (isEndPoint) ? ev.end_date : ev.start_date;
if(date.valueOf()>scheduler._max_date.valueOf())
date = scheduler._max_date;
var delta = date - scheduler._min_date_timeline;
if (delta<0) {
column_offset = 0;
} else {
var index = Math.round( delta/(step*scheduler._cols[0]) ); // results varies ~0.9 - ~24.17, e.g. that way we get 1 and 24
if(index>scheduler._cols.length) // if columns really small it's possible to get incorrect index
index = scheduler._cols.length;
for (var k=0; k<index; k++) {
x += scheduler._cols[k];
}
var column_date = scheduler.date.add(scheduler._min_date_timeline, scheduler.matrix[scheduler._mode].x_step*index, scheduler.matrix[scheduler._mode].x_unit);
delta = date - column_date;
var column_offset = Math.floor(delta/step);
}
x += (isEndPoint) ? column_offset-14 : column_offset+1;
return x;
}
function y_scale(d){
var html = "<table style='table-layout:fixed;' cellspacing='0' cellpadding='0'>";
var evs=[];
if (scheduler._load_mode && scheduler._load()) return;
if (this.render == "cell")
evs = trace_events.call(this);
else {
var tevs = scheduler.getEvents(scheduler._min_date, scheduler._max_date);
for (var j=0; j<tevs.length; j++){
var ind = this.order[ tevs[j][this.y_property] ];
if (!evs[ind]) evs[ind] = [];
evs[ind].push(tevs[j]);
}
}
var summ = 0;
for (var i=0; i < scheduler._cols.length; i++)
summ+=scheduler._cols[i];
var step = new Date();
step = (scheduler.date.add(step, this.x_step*this.x_size, this.x_unit)-step)/summ;
this._step = step;
this._summ = summ;
var heights = scheduler._colsS.heights=[];
for (var i=0; i<this.y_unit.length; i++){
var stats = this._logic(this.render, this.y_unit[i], this); // obj with custom style
scheduler._merge(stats, {
height: this.dy
});
//autosize height, if we have a free space
if(this.section_autoheight) {
if (this.y_unit.length * stats.height < d.offsetHeight) {
stats.height = Math.max(stats.height, Math.floor((d.offsetHeight - 1) / this.y_unit.length));
}
}
scheduler._merge(stats, {
//section 1
tr_className: "",
style_height: "height:"+stats.height+"px;",
style_width: "width:"+(this.dx-1)+"px;",
td_className: "dhx_matrix_scell "+scheduler.templates[this.name+"_scaley_class"](this.y_unit[i].key, this.y_unit[i].label, this),
td_content: scheduler.templates[this.name+'_scale_label'](this.y_unit[i].key, this.y_unit[i].label, this),
//section 2
summ_width: "width:"+summ+"px;",
//section 3
table_className: ''
});
// section 1
html+="<tr class='"+stats.tr_className+"' style='"+stats.style_height+"'><td class='"+stats.td_className+"' style='"+stats.style_width+"'>"+stats.td_content+"</td>";
if (this.render == "cell"){
for (var j=0; j < scheduler._cols.length; j++) {
html+="<td class='dhx_matrix_cell "+scheduler.templates[this.name+"_cell_class"](evs[i][j],this._trace_x[j],this.y_unit[i])+"' style='width:"+(scheduler._cols[j]-1)+"px'><div style='width:"+(scheduler._cols[j]-1)+"px'>"+scheduler.templates[this.name+"_cell_value"](evs[i][j])+"<div></td>";
}
} else {
//section 2
html+="<td><div style='"+stats.summ_width+" "+stats.style_height+" position:relative;' class='dhx_matrix_line'>";
if (evs[i]){
evs[i].sort(function(a,b){ return a.start_date>b.start_date?1:-1; });
var stack=[];
for (var j=0; j<evs[i].length; j++){
var ev = evs[i][j];
//get line in stack
var stack_pointer = 0;
while (stack[stack_pointer] && stack[stack_pointer].end_date > ev.start_date)
stack_pointer++;
stack[stack_pointer]=ev;
//render line
html+=scheduler.render_timeline_event.call(this, ev, stack_pointer);
}
}
//section 3
html+="<table class='"+stats.table_className+"' cellpadding='0' cellspacing='0' style='"+stats.summ_width+" "+stats.style_height+"' >";
for (var j=0; j < scheduler._cols.length; j++)
html+="<td class='dhx_matrix_cell "+scheduler.templates[this.name+"_cell_class"](evs[i],this._trace_x[j],this.y_unit[i])+"' style='width:"+(scheduler._cols[j]-1)+"px'><div style='width:"+(scheduler._cols[j]-1)+"px'><div></td>";
html+="</table>";
html+="</div></td>";
}
html+="</tr>";
}
html += "</table>";
this._matrix = evs;
d.scrollTop = 0; //fix flickering in FF
d.innerHTML = html;
scheduler._rendered = [];
var divs = document.getElementsByTagName("DIV");
for (var i=0; i < divs.length; i++)
if (divs[i].getAttribute("event_id"))
scheduler._rendered.push(divs[i]);
for (var i=0; i < d.firstChild.rows.length; i++)
heights.push(d.firstChild.rows[i].offsetHeight);
}
function x_scale(h){
h.innerHTML = "<div></div>"; h=h.firstChild;
scheduler._cols=[]; //store for data section
scheduler._colsS={height:0};
this._trace_x =[];
scheduler._min_date_timeline = scheduler._min_date;
var start = scheduler._min_date;
var summ = scheduler._x-this.dx-18; //border delta
var left = this.dx;
for (var i=0; i<this.x_size; i++){
scheduler._cols[i]=Math.floor(summ/(this.x_size-i));
this._trace_x[i]=new Date(start);
scheduler._render_x_header(i, left, start, h);
var cs = scheduler.templates[this.name+"_scalex_class"](start);
if (cs)
h.lastChild.className += " "+cs;
start = scheduler.date.add(start, this.x_step, this.x_unit);
summ-=scheduler._cols[i];
left+=scheduler._cols[i];
}
var trace = this._trace_x;
h.onclick = function(e){
var pos = locate_hcell(e);
if (pos)
scheduler.callEvent("onXScaleClick",[pos.x, trace[pos.x], e||event]);
};
h.ondblclick = function(e){
var pos = locate_hcell(e);
if (pos)
scheduler.callEvent("onXScaleDblClick",[pos.x, trace[pos.x], e||event]);
};
}
function set_full_view(mode){
if (mode){
scheduler.set_sizes();
_init_matrix_tooltip();
//we need to have day-rounded scales for navigation
//in same time, during rendering scales may be shifted
var temp = scheduler._min_date;
x_scale.call(this,scheduler._els["dhx_cal_header"][0]);
y_scale.call(this,scheduler._els["dhx_cal_data"][0]);
scheduler._min_date = temp;
scheduler._els["dhx_cal_date"][0].innerHTML=scheduler.templates[this.name+"_date"](scheduler._min_date, scheduler._max_date);
scheduler._table_view=true;
}
}
function hideToolTip(){
if (scheduler._tooltip){
scheduler._tooltip.style.display = "none";
scheduler._tooltip.date = "";
}
}
function showToolTip(obj,pos,offset){
if (obj.render != "cell") return;
var mark = pos.x+"_"+pos.y;
var evs = obj._matrix[pos.y][pos.x];
if (!evs) return hideToolTip();
evs.sort(function(a,b){ return a.start_date>b.start_date?1:-1; });
if (scheduler._tooltip){
if (scheduler._tooltip.date == mark) return;
scheduler._tooltip.innerHTML="";
} else {
var t = scheduler._tooltip = document.createElement("DIV");
t.className = "dhx_tooltip";
document.body.appendChild(t);
t.onclick = scheduler._click.dhx_cal_data;
}
var html = "";
for (var i=0; i<evs.length; i++){
html+="<div class='dhx_tooltip_line' event_id='"+evs[i].id+"'>";
html+="<div class='dhx_tooltip_date'>"+(evs[i]._timed?scheduler.templates.event_date(evs[i].start_date):"")+"</div>";
html+="<div class='dhx_event_icon icon_details'>&nbsp;</div>";
html+=scheduler.templates[obj.name+"_tooltip"](evs[i].start_date, evs[i].end_date,evs[i])+"</div>";
}
scheduler._tooltip.style.display="";
scheduler._tooltip.style.top = "0px";
if (document.body.offsetWidth-offset.left-scheduler._tooltip.offsetWidth < 0)
scheduler._tooltip.style.left = offset.left-scheduler._tooltip.offsetWidth+"px";
else
scheduler._tooltip.style.left = offset.left+pos.src.offsetWidth+"px";
scheduler._tooltip.date = mark;
scheduler._tooltip.innerHTML = html;
if (document.body.offsetHeight-offset.top-scheduler._tooltip.offsetHeight < 0)
scheduler._tooltip.style.top= offset.top-scheduler._tooltip.offsetHeight+pos.src.offsetHeight+"px";
else
scheduler._tooltip.style.top= offset.top+"px";
}
function _init_matrix_tooltip(){
dhtmlxEvent(scheduler._els["dhx_cal_data"][0], "mouseover", function(e){
var obj = scheduler.matrix[scheduler._mode];
if (obj){
var pos = scheduler._locate_cell_timeline(e);
var e = e || event;
var src = e.target||e.srcElement;
if (pos)
return showToolTip(obj,pos,getOffset(pos.src));
}
hideToolTip();
});
_init_matrix_tooltip=function(){};
}
scheduler.renderMatrix = function(mode){
var start_date = scheduler.date[this.name+"_start"](scheduler._date);
scheduler._min_date = scheduler.date.add(start_date, this.x_start*this.x_step, this.x_unit);
scheduler._max_date = scheduler.date.add(scheduler._min_date, this.x_size*this.x_step, this.x_unit);
scheduler._table_view = true;
set_full_view.call(this,mode);
};
function html_index(el) {
var p = el.parentNode.childNodes;
for (var i=0; i < p.length; i++)
if (p[i] == el) return i;
return -1;
}
function locate_hcell(e){
e = e||event;
var trg = e.target?e.target:e.srcElement;
while (trg && trg.tagName != "DIV")
trg=trg.parentNode;
if (trg && trg.tagName == "DIV"){
var cs = trg.className.split(" ")[0];
if (cs == "dhx_scale_bar")
return { x:html_index(trg), y:-1, src:trg, scale:true };
}
}
scheduler._locate_cell_timeline = function(e){
e = e||event;
var trg = e.target?e.target:e.srcElement;
while (trg && trg.tagName != "TD")
trg=trg.parentNode;
if (trg && trg.tagName == "TD"){
var cs = trg.className.split(" ")[0];
if (cs == "dhx_matrix_cell") {
if(scheduler._isRender("cell")) {
return { x:trg.cellIndex-1, y:trg.parentNode.rowIndex, src:trg };
} else { // probably desired path for all modes except cell
var trscell = trg.parentNode; // moving out from current td
while(trscell && trscell.tagName != "TD") {
trscell=trscell.parentNode;
}
return { x:trg.cellIndex, y:trscell.parentNode.rowIndex, src:trg };
}
}
else if (cs == "dhx_matrix_scell")
return { x:-1, y:trg.parentNode.rowIndex, src:trg, scale:true };
}
return false;
};
var old_click = scheduler._click.dhx_cal_data;
scheduler._click.dhx_cal_data = function(e){
var ret = old_click.apply(this,arguments);
var obj = scheduler.matrix[scheduler._mode];
if (obj){
var pos = scheduler._locate_cell_timeline(e);
if (pos){
if (pos.scale)
scheduler.callEvent("onYScaleClick",[pos.y, obj.y_unit[pos.y], e||event]);
else
scheduler.callEvent("onCellClick",[pos.x, pos.y, obj._trace_x[pos.x], (((obj._matrix[pos.y]||{})[pos.x])||[]), e||event]);
}
}
return ret;
};
scheduler.dblclick_dhx_matrix_cell = function(e){
var obj = scheduler.matrix[scheduler._mode];
if (obj){
var pos = scheduler._locate_cell_timeline(e);
if (pos){
if (pos.scale)
scheduler.callEvent("onYScaleDblClick",[pos.y, obj.y_unit[pos.y], e||event]);
else
scheduler.callEvent("onCellDblClick",[pos.x, pos.y, obj._trace_x[pos.x], (((obj._matrix[pos.y]||{})[pos.x])||[]), e||event]);
}
}
};
scheduler.dblclick_dhx_matrix_scell = function(e){
return scheduler.dblclick_dhx_matrix_cell(e);
};
scheduler._isRender = function(mode){
return (scheduler.matrix[scheduler._mode] && scheduler.matrix[scheduler._mode].render == mode);
};
scheduler.attachEvent("onCellDblClick", function (x, y, a, b, event){
if (this.config.readonly|| (event.type == "dblclick" && !this.config.dblclick_create)) return;
var obj = scheduler.matrix[scheduler._mode];
var event_options = {};
event_options['start_date'] = obj._trace_x[x];
event_options['end_date'] = (obj._trace_x[x+1]) ? obj._trace_x[x+1] : scheduler.date.add(obj._trace_x[x], obj.x_step, obj.x_unit);
event_options[scheduler.matrix[scheduler._mode].y_property] = obj.y_unit[y].key;
scheduler.addEventNow(event_options, null, event);
});
scheduler.attachEvent("onBeforeDrag", function (event_id, mode, native_event_object){
if(scheduler._isRender("cell")) {
return false;
}
return true;
});
})();

View File

@ -0,0 +1,378 @@
scheduler.templates.calendar_month = scheduler.date.date_to_str("%F %Y");
scheduler.templates.calendar_scale_date = scheduler.date.date_to_str("%D");
scheduler.templates.calendar_date = scheduler.date.date_to_str("%d");
scheduler.renderCalendar=function(obj, _prev){
var cal = null;
var date = obj.date||(new Date());
if (typeof date == "string")
date = this.templates.api_date(date);
if (!_prev){
var cont = obj.container;
var pos = obj.position;
if (typeof cont == "string")
cont = document.getElementById(cont);
if (typeof pos == "string")
pos = document.getElementById(pos);
if (pos && (typeof pos.left == "undefined")){
var tpos = getOffset(pos);
pos = {
top:tpos.top + pos.offsetHeight,
left:tpos.left
};
};
if (!cont)
cont = scheduler._get_def_cont(pos);
cal = this._render_calendar(cont,date,obj);
cal.onclick = function(e){
e = e||event;
var src = e.target||e.srcElement;
if (src.className.indexOf("dhx_month_head")!=-1){
var pname = src.parentNode.className;
if (pname.indexOf("dhx_after")==-1 && pname.indexOf("dhx_before")==-1) {
var newdate = scheduler.templates.xml_date(this.getAttribute("date"));
newdate.setDate(parseInt(src.innerHTML,10));
scheduler.unmarkCalendar(this);
scheduler.markCalendar(this,newdate,"dhx_calendar_click");
this._last_date=newdate;
if (this.conf.handler) this.conf.handler.call(scheduler, newdate, this);
}
}
};
} else {
cal = this._render_calendar(_prev.parentNode, date, obj, _prev);
scheduler.unmarkCalendar(cal);
}
var start = scheduler.date.month_start(date);
var end = scheduler.date.add(start,1,"month");
var evs = this.getEvents(start,end);
for (var i=0; i < evs.length; i++){
var ev = evs[i];
var d = ev.start_date;
if (d.valueOf()<start.valueOf())
d = start;
while (d<=ev.end_date){
this.markCalendar(cal,d,"dhx_year_event");
d = this.date.add(d,1,"day");
if (d.valueOf()>=end.valueOf())
break;
}
}
cal.conf = obj;
return cal;
};
scheduler._get_def_cont = function(pos){
if (!this._def_count){
this._def_count = document.createElement("DIV");
this._def_count.style.cssText = "position:absolute;z-index:10100;width:251px; height:175px;";
this._def_count.onclick = function(e){ (e||event).cancelBubble = true; };
document.body.appendChild(this._def_count);
}
this._def_count.style.left = pos.left+"px";
this._def_count.style.top = pos.top+"px";
this._def_count._created = new Date();
return this._def_count;
};
scheduler._locateCalendar=function(cal,date){
var table=cal.childNodes[2].childNodes[0];
if (typeof date == "string")
date = scheduler.templates.api_date(date);
var d = cal.week_start+date.getDate()-1;
return table.rows[Math.floor(d/7)].cells[d%7].firstChild;
};
scheduler.markCalendar=function(cal,date,css){
this._locateCalendar(cal,date).className+=" "+css;
};
scheduler.unmarkCalendar=function(cal,date,css){
date=date||cal._last_date;
css=css||"dhx_calendar_click";
if (!date) return;
var el = this._locateCalendar(cal,date);
el.className= (el.className||"").replace(RegExp(css,"g"));
};
scheduler._week_template=function(width){
var summ = (width || 250);
var left = 0;
var week_template = document.createElement("div");
var dummy_date = this.date.week_start(new Date());
for (var i=0; i<7; i++){
this._cols[i]=Math.floor(summ/(7-i));
this._render_x_header(i,left,dummy_date,week_template);
dummy_date = this.date.add(dummy_date,1,"day");
summ-=this._cols[i];
left+=this._cols[i];
}
week_template.lastChild.className+=" dhx_scale_bar_last";
return week_template;
};
scheduler.updateCalendar=function(obj,sd){
obj.conf.date = sd;
this.renderCalendar(obj.conf, obj);
};
scheduler._mini_cal_arrows = ["&nbsp", "&nbsp"];
scheduler._render_calendar=function(obj,sd,conf, previous){
/*store*/
var ts = scheduler.templates;
var temp = this._cols; this._cols=[];
var temp2 = this._mode; this._mode = "calendar";
var temp3 = this._colsS; this._colsS = {height:0};
var temp4 = new Date(this._min_date);
var temp5 = new Date(this._max_date);
var temp6 = new Date(scheduler._date);
var temp7 = ts.month_day; ts.month_day=ts.calendar_date;
sd = this.date.month_start(sd);
var week_template = this._week_template(obj.offsetWidth-1);
var d;
if (previous)
d = previous;
else {
var d = document.createElement("DIV");
d.className="dhx_cal_container dhx_mini_calendar";
}
d.setAttribute("date",this.templates.xml_format(sd));
d.innerHTML="<div class='dhx_year_month'></div><div class='dhx_year_week'>"+week_template.innerHTML+"</div><div class='dhx_year_body'></div>";
d.childNodes[0].innerHTML=this.templates.calendar_month(sd);
if (conf.navigation){
var arrow = document.createElement("DIV");
arrow.className = "dhx_cal_prev_button";
arrow.style.cssText="left:1px;top:2px;position:absolute;";
arrow.innerHTML = this._mini_cal_arrows[0];
d.firstChild.appendChild(arrow);
arrow.onclick=function(){
scheduler.updateCalendar(d, scheduler.date.add(d._date, -1, "month"));
};
arrow = document.createElement("DIV");
arrow.className = "dhx_cal_next_button";
arrow.style.cssText="left:auto; right:1px;top:2px;position:absolute;";
arrow.innerHTML = this._mini_cal_arrows[1];
d.firstChild.appendChild(arrow);
arrow.onclick=function(){
scheduler.updateCalendar(d, scheduler.date.add(d._date, 1, "month"));
};
d._date = new Date(sd);
}
d.week_start = (sd.getDay()-(this.config.start_on_monday?1:0)+7)%7;
var dd = this.date.week_start(sd);
this._reset_month_scale(d.childNodes[2],sd,dd);
var r=d.childNodes[2].firstChild.rows;
for (var k=r.length; k<6; k++) {
r[0].parentNode.appendChild(r[0].cloneNode(true));
for (var ri=0; ri < r[k].childNodes.length; ri++) {
r[k].childNodes[ri].className = "dhx_after";
};
}
if (!previous)
obj.appendChild(d);
/*restore*/ this._cols=temp; this._mode = temp2; this._colsS = temp3; this._min_date=temp4; this._max_date=temp5; scheduler._date = temp6; ts.month_day=temp7;
return d;
};
scheduler.destroyCalendar=function(cal,force){
if (!cal && this._def_count && this._def_count.firstChild){
if (force || (new Date()).valueOf() - this._def_count._created.valueOf() > 500)
cal = this._def_count.firstChild;
}
if (!cal) return;
cal.onclick=null;
cal.innerHTML="";
if (cal.parentNode)
cal.parentNode.removeChild(cal);
if (this._def_count)
this._def_count.style.top = "-1000px";
};
scheduler.isCalendarVisible=function(){
if (this._def_count && parseInt(this._def_count.style.top,10) > 0 )
return this._def_count;
return false;
};
scheduler.attachEvent("onTemplatesReady",function(){
dhtmlxEvent(document.body, "click", function(){ scheduler.destroyCalendar(); });
});
scheduler.templates.calendar_time = scheduler.date.date_to_str("%d-%m-%Y");
scheduler.form_blocks.calendar_time={
render:function(){
var html = "<input class='dhx_readonly' type='text' readonly='true'>";
var cfg = scheduler.config;
var dt = this.date.date_part(new Date());
if (cfg.first_hour)
dt.setHours(cfg.first_hour);
html+=" <select>";
for (var i=60*cfg.first_hour; i<60*cfg.last_hour; i+=this.config.time_step*1){
var time=this.templates.time_picker(dt);
html+="<option value='"+i+"'>"+time+"</option>";
dt=this.date.add(dt,this.config.time_step,"minute");
}
html+="</select>";
var full_day = scheduler.config.full_day;
return "<div style='height:30px; padding-top:0px; font-size:inherit;' class='dhx_cal_lsection dhx_section_time'>"+html+"<span style='font-weight:normal; font-size:10pt;'> &nbsp;&ndash;&nbsp; </span>"+html+"</div>";
},
set_value:function(node,value,ev){
var inputs=node.getElementsByTagName("input");
var selects=node.getElementsByTagName("select");
var _init_once = function(inp,date,number){
inp.onclick = function(){
scheduler.destroyCalendar(null, true);
scheduler.renderCalendar({
position:inp,
date:new Date(this._date),
navigation:true,
handler:function(new_date){
inp.value = scheduler.templates.calendar_time(new_date);
inp._date = new Date(new_date);
scheduler.destroyCalendar();
if(scheduler.config.event_duration && number == 0) { //first element = start date
_update_minical_select();
}
}
});
};
};
if(scheduler.config.full_day) {
if (!node._full_day){
node.previousSibling.innerHTML+="<div class='dhx_fullday_checkbox'><label><input type='checkbox' name='full_day' value='true'> "+scheduler.locale.labels.full_day+"&nbsp;</label></input></div>";
node._full_day=true;
}
var input=node.previousSibling.getElementsByTagName("input")[0];
var isFulldayEvent = (scheduler.date.time_part(ev.start_date)==0 && scheduler.date.time_part(ev.end_date)==0 && ev.end_date.valueOf()-ev.start_date.valueOf() < 2*24*60*60*1000);
input.checked = isFulldayEvent;
for(var i in selects)
selects[i].disabled=input.checked;
for(var i=0; i<inputs.length-1; i++) //last input = checkbox
inputs[i].disabled=input.checked;
input.onclick = function(){
if(input.checked == true) {
var start_date = new Date(ev.start_date);
var end_date = new Date(ev.end_date);
scheduler.date.date_part(start_date);
end_date = scheduler.date.add(start_date, 1, "day");
}
var start = start_date||ev.start_date;
var end = end_date||ev.end_date;
_attach_action(inputs[0],start);
_attach_action(inputs[1],end);
selects[0].value=start.getHours()*60+start.getMinutes();
selects[1].value=end.getHours()*60+end.getMinutes();
for(var i in selects)
selects[i].disabled=input.checked;
for(var i=0; i<inputs.length-1; i++) //last input = checkbox
inputs[i].disabled=input.checked;
};
};
if(scheduler.config.event_duration) {
function _update_minical_select() {
ev.start_date = scheduler.date.add(inputs[0]._date, selects[0].value, "minute");
ev.end_date.setTime(ev.start_date.getTime() + (scheduler.config.event_duration * 60 * 1000));
inputs[1].value = scheduler.templates.calendar_time(ev.end_date);
inputs[1]._date = scheduler.date.date_part(new Date(ev.end_date));
selects[1].value=ev.end_date.getHours()*60+ev.end_date.getMinutes();
}
for(var i in selects)
selects[i].onchange = _update_minical_select;
}
function _attach_action(inp, date, number){
_init_once(inp,date,number);
inp.value = scheduler.templates.calendar_time(date);
inp._date = scheduler.date.date_part(new Date(date));
};
_attach_action(inputs[0],ev.start_date, 0);
_attach_action(inputs[1],ev.end_date, 1);
_init_once = function(){};
selects[0].value=ev.start_date.getHours()*60+ev.start_date.getMinutes();
selects[1].value=ev.end_date.getHours()*60+ev.end_date.getMinutes();
},
get_value:function(node,ev){
var inputs = node.getElementsByTagName("input");
var selects = node.getElementsByTagName("select");
ev.start_date = scheduler.date.add(inputs[0]._date, selects[0].value, "minute");
ev.end_date = scheduler.date.add(inputs[1]._date, selects[1].value, "minute");
if (ev.end_date<=ev.start_date)
ev.end_date=scheduler.date.add(ev.start_date,scheduler.config.time_step,"minute");
},
focus:function(node){
}
};
scheduler.linkCalendar=function(calendar, datediff){
var action = function(){
var date = scheduler._date;
var mode = scheduler._mode;
var dateNew = new Date(date.valueOf());
if (datediff) dateNew = datediff(dateNew);
dateNew.setDate(1);
scheduler.updateCalendar(calendar, dateNew);
if (!datediff){
if (mode == 'day') {
scheduler.markCalendar(calendar,date, "dhx_calendar_click");
} else if (mode == 'week') {
dateNew = scheduler.date.week_start(new Date(date.valueOf()));
for (i = 0; i < 7; i++) {
var diff = dateNew.getMonth() + dateNew.getYear()*12 - date.getMonth() - date.getYear()*12;
if (diff && diff>0)
continue;
scheduler.markCalendar(calendar, dateNew, "dhx_calendar_click");
dateNew = scheduler.date.add(dateNew,1,"day");
}
}
}
return true;
};
scheduler.attachEvent("onViewChange", action);
scheduler.attachEvent("onXLE", action);
scheduler.attachEvent("onEventAdded", action);
scheduler.attachEvent("onEventChanged", action);
scheduler.attachEvent("onAfterEventDelete", action);
action();
};

View File

@ -0,0 +1,27 @@
scheduler.attachEvent("onTemplatesReady",function(){
scheduler.xy.scroll_width = 0;
var old = scheduler.render_view_data;
scheduler.render_view_data=function(){
var data = this._els["dhx_cal_data"][0];
data.firstChild._h_fix = true;
old.apply(scheduler,arguments);
var height = parseInt(data.style.height);
data.style.height="1px";
data.style.height=data.scrollHeight+"px";
this._obj.style.height = this._obj.clientHeight + data.scrollHeight - height + "px";
}
var old_s=scheduler._reset_month_scale;
scheduler._reset_month_scale=function(a,b,c){
var dummy = {clientHeight:100};
old_s.apply(scheduler,[dummy,b,c]);
a.innerHTML = dummy.innerHTML;
}
});

View File

@ -0,0 +1,63 @@
scheduler.form_blocks["multiselect"]={
render:function(sns) {
var _result = "<div class='dhx_multi_select_"+sns.name+"' style='overflow: auto; height: "+sns.height+"px; position: relative;' >";
for (var i=0; i<sns.options.length; i++) {
_result += "<label><input type='checkbox' value='"+sns.options[i].key+"'/>"+sns.options[i].label+"</label>";
if(convertStringToBoolean(sns.vertical)) _result += '<br/>';
}
_result += "</div>";
return _result;
},
set_value:function(node,value,ev,config){
var _children = node.getElementsByTagName('input');
for(var i=0;i<_children.length;i++) {
_children[i].checked = false; //unchecking all inputs on the form
}
function _mark_inputs(ids) { // ids = [ 0: undefined, 1: undefined, 2: true ... ]
var _children = node.getElementsByTagName('input');
for(var i=0;i<_children.length; i++) {
_children[i].checked = !! ids[_children[i].value];
}
}
if(!scheduler._new_event) { // if it is a new event - new to get saved options
var _ids = [];
if(ev[config.map_to]) {
var results = ev[config.map_to].split(',');
for(var i=0;i<results.length;i++){
_ids[results[i]] = true;
}
_mark_inputs(_ids);
}
else {
var divLoading = document.createElement('div');
divLoading.className='dhx_loading';
divLoading.style.cssText = "position: absolute; top: 40%; left: 40%;";
node.appendChild(divLoading);
dhtmlxAjax.get(config.script_url+'?dhx_crosslink_'+config.map_to+'='+ev.id+'&uid='+scheduler.uid(), function(loader) {
var _result = loader.doXPath("//data/item");
var _ids = [];
for(var i=0;i<_result.length;i++){
_ids[_result[i].getAttribute(config.map_to)] = true;
}
_mark_inputs(_ids);
node.removeChild(divLoading);
});
}
}
},
get_value:function(node,ev,config){
var _result = [];
var _children = node.getElementsByTagName("input");
for(var i=0;i<_children.length;i++) {
if(_children[i].checked)
_result.push(_children[i].value);
}
return _result.join(',');
},
focus:function(node){
}
};

View File

@ -0,0 +1,22 @@
(function(){
function backup(obj){
var t = function(){};
t.prototype = obj;
return t;
}
var old = scheduler._load;
scheduler._load=function(url,from){
url=url||this._load_url;
if (typeof url == "object"){
var t = backup(this._loaded);
for (var i=0; i < url.length; i++) {
this._loaded=new t();
old.call(this,url[i],from);
}
} else
old.apply(this,arguments);
}
})();

View File

@ -0,0 +1,38 @@
//lame old code doesn't provide raw event object
scheduler.attachEvent("onTemplatesReady", function(){
var dragger = (new dhtmlDragAndDropObject());
var old = dragger.stopDrag;
var last_event;
dragger.stopDrag = function(e){
last_event = e||event;
return old.apply(this, arguments);
};
dragger.addDragLanding(scheduler._els["dhx_cal_data"][0],{
_drag:function(sourceHtmlObject,dhtmlObject,targetHtmlObject){
var temp = scheduler.attachEvent("onEventCreated", function(id,e){
if (!scheduler.callEvent("onExternalDragIn", [id, sourceHtmlObject, e])){
this._drag_mode = this._drag_id = null;
this.deleteEvent(id);
}
});
if (scheduler.matrix[scheduler._mode])
scheduler.dblclick_dhx_matrix_cell(last_event);
else
scheduler._on_dbl_click(last_event);
scheduler.detachEvent(temp);
},
_dragIn:function(htmlObject,shtmlObject){
return htmlObject;
},
_dragOut:function(htmlObject){
return this;
}
});
});

View File

@ -0,0 +1,196 @@
scheduler.toPDF=function(url,mode,header,footer){
var dx = 0;
var dy = 0;
var colors = false;
if (mode == "fullcolor"){
colors = true;
mode = "color";
}
mode = mode||"color";
function x_norm(x) {
x = parseFloat(x);
if (isNaN(x)) return "auto";
return 100 * x / dx;
}
function y_norm(y) {
y = parseFloat(y);
if (isNaN(y)) return "auto";
return 100 * y / dy;
}
function xml_month_scale(xh){
var xml="";
for (var i = 0; i < xh.length; i++)
xml += "\n<column><![CDATA[" + xh[i].innerHTML + "]]></column>";
dx = xh[0].offsetWidth;
return xml;
}
function de_day(node,n){
var x = parseInt(node.style.left);
for (var dx=0; dx < scheduler._cols.length; dx++){
x-=scheduler._cols[dx];
if (x<0) return dx;
}
return n;
}
function de_week(node,n){
var y = parseInt(node.style.top);
for (var dy=0; dy < scheduler._colsS.heights.length; dy++)
if (scheduler._colsS.heights[dy]>y) return dy;
return n;
}
function xml_month(yh){
var xml="";
var r = yh.firstChild.rows;
for (var i = 0; i < r.length; i++) {
var days = [];
for (var j = 0; j < r[i].cells.length; j++){
/* var dd = r[i].cells[j];
var css = dd.className;
if (css!=" " && css!="dhx_now ")
days.push("");
else*/
days.push(r[i].cells[j].firstChild.innerHTML);
}
xml += "\n<row height='"+yh.firstChild.rows[i].cells[0].offsetHeight+"'><![CDATA[" + days.join("|") + "]]></row>";
dy = yh.firstChild.rows[0].cells[0].offsetHeight;
}
return xml;
}
function xml_top(profile) {
var xml = "<data profile='"+profile+"'";
if (header)
xml+=" header='"+header+"'";
if (footer)
xml+=" footer='"+footer+"'";
xml+=">";
xml += "<scale mode='" + scheduler._mode + "' today='" + scheduler._els.dhx_cal_date[0].innerHTML + "'>";
if (scheduler._mode == "agenda"){
var xh = scheduler._els.dhx_cal_header[0].childNodes[0].childNodes;
xml+="<column>"+xh[0].innerHTML+"</column><column>"+xh[1].innerHTML+"</column>"
} else if (scheduler._mode == "year"){
var xh = scheduler._els.dhx_cal_data[0].childNodes;
for (var i=0; i < xh.length; i++) {
xml+="<month label='"+xh[i].childNodes[0].innerHTML+"'>";
xml+=xml_month_scale(xh[i].childNodes[1].childNodes);
xml+=xml_month(xh[i].childNodes[2]);
xml+="</month>";
};
} else {
xml += "<x>";
var xh = scheduler._els.dhx_cal_header[0].childNodes;
xml+=xml_month_scale(xh);
xml += "</x>";
var yh = scheduler._els.dhx_cal_data[0];
if (yh.firstChild.tagName == "TABLE") {
xml += xml_month(yh);
} else {
yh = yh.childNodes[yh.childNodes.length - 1];
while (yh.className.indexOf("dhx_scale_holder") == -1)
yh = yh.previousSibling;
yh = yh.childNodes;
xml += "<y>";
for (var i = 0; i < yh.length; i++)
xml += "\n<row><![CDATA[" + yh[i].innerHTML + "]]></row>";
xml += "</y>";
dy = yh[0].offsetHeight;
}
}
xml += "</scale>";
return xml;
}
function get_style(node, style){
return (window.getComputedStyle?(window.getComputedStyle(node, null)[style]):(node.currentStyle?node.currentStyle[style]:null))||"";
}
function xml_body() {
var xml = "";
var evs = scheduler._rendered;
if (scheduler._mode == "agenda"){
for (var i=0; i < evs.length; i++)
xml+="<event><head>"+evs[i].childNodes[0].innerHTML+"</head><body>"+evs[i].childNodes[2].innerHTML+"</body></event>";
} else if (scheduler._mode == "year"){
var evs = scheduler.get_visible_events();
for (var i=0; i < evs.length; i++) {
var d = evs[i].start_date;
if (d.valueOf()<scheduler._min_date.valueOf())
d = scheduler._min_date;
while (d<evs[i].end_date){
var m = d.getMonth()+12*(d.getFullYear()-scheduler._min_date.getFullYear())-scheduler.week_starts._month;
var day = scheduler.week_starts[m]+d.getDate()-1;
xml+="<event day='"+(day%7)+"' week='"+Math.floor(day/7)+"' month='"+m+"'></event>";
scheduler._mark_year_date(d);
d = scheduler.date.add(d,1,"day");
if (d.valueOf()>=scheduler._max_date.valueOf())
break;
}
}
} else {
for (var i = 0; i < evs.length; i++) {
var zx = x_norm(evs[i].style.left);
var zy = y_norm(evs[i].style.top);
var zdx = x_norm(evs[i].style.width);
var zdy = y_norm(evs[i].style.height);
var e_type = evs[i].className.split(" ")[0].replace("dhx_cal_", "");
var dets = scheduler.getEvent(evs[i].getAttribute("event_id"))
var day = dets._sday;
var week = dets._sweek;
if (scheduler._mode != "month") {
if (parseInt(evs[i].style.left) <= 26) {
zx = 2;
zdx += x_norm(evs[i].style.left)-1;
}
if (evs[i].parentNode == scheduler._els.dhx_cal_data[0]) continue;
zx += x_norm(evs[i].parentNode.style.left);
zx -= x_norm(51);
} else {
zdy = parseInt(evs[i].offsetHeight);
zy = parseInt(evs[i].style.top) - 22;
day = de_day(evs[i],day);
week = de_week(evs[i],week);
}
xml += "\n<event week='"+week+"' day='"+day+"' type='" + e_type + "' x='" + zx + "' y='" + zy + "' width='" + zdx + "' height='" + zdy + "'>";
if (e_type == "event") {
xml += "<header><![CDATA[" + evs[i].childNodes[1].innerHTML + "]]></header>";
var text_color = colors?get_style(evs[i].childNodes[2],"color"):"";
var bg_color = colors?get_style(evs[i].childNodes[2],"backgroundColor"):"";
xml += "<body backgroundColor='"+bg_color+"' color='" + text_color + "'><![CDATA[" + evs[i].childNodes[2].innerHTML + "]]></body>";
} else {
var text_color = colors?get_style(evs[i],"color"):"";
var bg_color = colors?get_style(evs[i],"backgroundColor"):"";
xml += "<body backgroundColor='"+bg_color+"' color='" + text_color + "'><![CDATA[" + evs[i].innerHTML + "]]></body>";
}
xml += "</event>";
}
}
return xml;
}
function xml_end(){
var xml = "</data>";
return xml;
}
var uid = (new Date()).valueOf();
var d=document.createElement("div");
d.style.display="none";
document.body.appendChild(d);
d.innerHTML = '<form id="'+uid+'" method="post" target="_blank" action="'+url+'" accept-charset="utf-8" enctype="text/html"><input type="hidden" name="mycoolxmlbody"/> </form>';
document.getElementById(uid).firstChild.value = xml_top(mode).replace("\u2013", "-") + xml_body() + xml_end();
document.getElementById(uid).submit();
d.parentNode.removeChild(d);grid = null;
}

View File

@ -0,0 +1,100 @@
scheduler.attachEvent("onTemplatesReady",function(){
scheduler.attachEvent("onBeforeLightbox",function(id){
if (this.config.readonly_form || this.getEvent(id).readonly)
this.config.readonly_active = true;
else {
this.config.readonly_active = false;
return true;
}
for (var i=0; i < this.config.lightbox.sections.length; i++) {
this.config.lightbox.sections[i].focus = false;
};
return true;
});
function txt_replace(tag,d,n,text){
var txts = d.getElementsByTagName(tag);
var txtt = n.getElementsByTagName(tag);
for (var i=txtt.length-1; i>=0; i--){
var n = txtt[i];
if (!text)
n.disabled = true;
else {
var t = document.createElement("SPAN");
t.className = "dhx_text_disabled";
t.innerHTML=text(txts[i]);
n.parentNode.insertBefore(t,n);
n.parentNode.removeChild(n);
}
}
}
var old = scheduler._fill_lightbox;
scheduler._fill_lightbox=function(){
var sns = this.config.lightbox.sections;
if (this.config.readonly_active){
for (var i=0; i < sns.length; i++) {
if (sns[i].type == 'recurring') {
var s = document.getElementById(sns[i].id);
s.style.display=s.nextSibling.style.display='none';
sns.splice(i,1);
i--;
}
};
}
var res = old.apply(this,arguments);
if (this.config.readonly_active){
var d = this._get_lightbox();
var n = this._lightbox_r = d.cloneNode(true);
txt_replace("textarea",d,n,function(a){ return a.value; });
txt_replace("input",d,n,false);
txt_replace("select",d,n,function(a){ return a.options[Math.max((a.selectedIndex||0),0)].text; });
n.removeChild(n.childNodes[2]);
n.removeChild(n.childNodes[3]);
d.parentNode.insertBefore(n,d);
olds.call(this,n);
this._lightbox = n;
this.setLightboxSize();
this._lightbox = null;
n.onclick=function(e){
var src=e?e.target:event.srcElement;
if (!src.className) src=src.previousSibling;
if (src && src.className)
switch(src.className){
case "dhx_cancel_btn":
scheduler.callEvent("onEventCancel",[scheduler._lightbox_id]);
scheduler._edit_stop_event(scheduler.getEvent(scheduler._lightbox_id),false);
scheduler.hide_lightbox();
break;
}
};
}
return res;
};
var olds = scheduler.showCover;
scheduler.showCover=function(){
if (!this.config.readonly_active)
olds.apply(this,arguments);
};
var hold = scheduler.hide_lightbox;
scheduler.hide_lightbox=function(){
if (this._lightbox_r){
this._lightbox_r.parentNode.removeChild(this._lightbox_r);
this._lightbox_r = null;
}
return hold.apply(this,arguments);
};
});

View File

@ -0,0 +1,66 @@
//redefine this method, if you want to provide a custom set of attributes for serialization
scheduler.data_attributes=function(){
var attrs = [];
var format = scheduler.templates.xml_format;
for (var a in this._events){
var ev = this._events[a];
for (var name in ev)
if (name.substr(0,1) !="_")
attrs.push([name,((name == "start_date" || name == "end_date")?format:null)]);
break;
}
return attrs;
}
scheduler.toXML = function(header){
var xml = [];
var attrs = this.data_attributes();
for (var a in this._events){
var ev = this._events[a];
if (ev.id.toString().indexOf("#")!=-1) continue;
xml.push("<event>");
for (var i=0; i < attrs.length; i++)
xml.push("<"+attrs[i][0]+"><![CDATA["+(attrs[i][1]?attrs[i][1](ev[attrs[i][0]]):ev[attrs[i][0]])+"]]></"+attrs[i][0]+">");
xml.push("</event>");
}
return (header||"")+"<data>"+xml.join("\n")+"</data>";
};
scheduler.toJSON = function(){
var json = [];
var attrs = this.data_attributes();
for (var a in this._events){
var ev = this._events[a];
if (ev.id.toString().indexOf("#")!=-1) continue;
var ev = this._events[a];
var line =[];
for (var i=0; i < attrs.length; i++)
line.push(' '+attrs[i][0]+':"'+((attrs[i][1]?attrs[i][1](ev[attrs[i][0]]):ev[attrs[i][0]])||"").toString().replace(/\n/g,"")+'" ');
json.push("{"+line.join(",")+"}");
}
return "["+json.join(",\n")+"]";
};
scheduler.toICal = function(header){
var start = "BEGIN:VCALENDAR\nVERSION:2.0\nPRODID:-//dhtmlXScheduler//NONSGML v2.2//EN\nDESCRIPTION:";
var end = "END:VCALENDAR";
var format = scheduler.date.date_to_str("%Y%m%dT%H%i%s");
var ical = [];
for (var a in this._events){
var ev = this._events[a];
if (ev.id.toString().indexOf("#")!=-1) continue;
ical.push("BEGIN:VEVENT");
ical.push("DTSTART:"+format(ev.start_date));
ical.push("DTEND:"+format(ev.end_date));
ical.push("SUMMARY:"+ev.text);
ical.push("END:VEVENT");
}
return start+(header||"")+"\n"+ical.join("\n")+"\n"+end;
};

View File

@ -0,0 +1,133 @@
window.dhtmlXTooltip={version:0.1};
dhtmlXTooltip.config = {
className: 'dhtmlXTooltip tooltip',
timeout_to_display: 50,
delta_x: 15,
delta_y: -20
};
dhtmlXTooltip.tooltip = document.createElement('div');
dhtmlXTooltip.tooltip.className = dhtmlXTooltip.config.className;
dhtmlXTooltip.show = function(event, text) { //browser event, text to display
dhtmlXTooltip.tooltip.className = dhtmlXTooltip.config.className;
var pos=this.position(event);
var target = event.target||event.srcElement;
if (this.isTooltip(target)) {return;} // if we are over tooltip -- do nothing, just return (so tooltip won't move)
var actual_x = pos.x+dhtmlXTooltip.config.delta_x||0;
var actual_y = pos.y-dhtmlXTooltip.config.delta_y||0;
this.tooltip.style.visibility = "hidden";
if(this.tooltip.style.removeAttribute) {
this.tooltip.style.removeAttribute("right");
this.tooltip.style.removeAttribute("bottom");
} else {
this.tooltip.style.removeProperty("right");
this.tooltip.style.removeProperty("bottom");
}
this.tooltip.style.left = "0px";
this.tooltip.style.top = "0px";
this.tooltip.innerHTML = text;
scheduler._obj.appendChild(this.tooltip);
var tooltip_width = this.tooltip.offsetWidth;
var tooltip_height = this.tooltip.offsetHeight;
if (document.body.offsetWidth - actual_x - tooltip_width < 0) { // tooltip is out of the right page bound
if(this.tooltip.style.removeAttribute)
this.tooltip.style.removeAttribute("left");
else
this.tooltip.style.removeProperty("left");
this.tooltip.style.right = (document.body.offsetWidth - actual_x + 2 * dhtmlXTooltip.config.delta_x||0) + "px";
} else {
if (actual_x < 0) { // tooltips is out of the left page bound
this.tooltip.style.left = (pos.x + Math.abs(dhtmlXTooltip.config.delta_x||0)) + "px";
} else { // normal situation
this.tooltip.style.left = actual_x + "px";
}
}
if (document.body.offsetHeight - actual_y - tooltip_height < 0) { // tooltip is below bottom of the page
if(this.tooltip.style.removeAttribute)
this.tooltip.style.removeAttribute("top");
else
this.tooltip.style.removeProperty("top");
this.tooltip.style.bottom = (document.body.offsetHeight - actual_y - 2 * dhtmlXTooltip.config.delta_y||0) + "px";
} else {
if (actual_y < 0) { // tooltip is higher then top of the page
this.tooltip.style.top = (pos.y + Math.abs(dhtmlXTooltip.config.delta_y||0)) + "px";
}
else { // normal situation
this.tooltip.style.top = actual_y + "px";
}
}
this.tooltip.style.visibility = "visible";
};
dhtmlXTooltip.hide = function() {
if(this.tooltip.parentNode) {
this.tooltip.parentNode.removeChild(this.tooltip);
}
};
dhtmlXTooltip.delay = function(method, object, params, delay) {
if(this.tooltip._timeout_id) {
window.clearTimeout(this.tooltip._timeout_id);
}
this.tooltip._timeout_id = setTimeout(function(){
var ret = method.apply(object,params);
method = obj = params = null;
return ret;
},delay||this.config.timeout_to_display);
};
dhtmlXTooltip.isTooltip = function(node){
var res = false;
while (node && !res) {
res = (node.className == this.tooltip.className);
node=node.parentNode;
}
return res;
};
dhtmlXTooltip.position = function(ev) {
var ev = ev || window.event;
if(ev.pageX || ev.pageY) //FF, KHTML
return {x:ev.pageX, y:ev.pageY};
//IE
var d = ((dhtmlx._isIE)&&(document.compatMode != "BackCompat"))?document.documentElement:document.body;
return {
x:ev.clientX + d.scrollLeft - d.clientLeft,
y:ev.clientY + d.scrollTop - d.clientTop
};
};
scheduler.attachEvent("onMouseMove", function(event_id, e){ // (scheduler event_id, browser event)
var ev = e||window.event;
var target = ev.target||ev.srcElement;
if (event_id || dhtmlXTooltip.isTooltip(target)) { // if we are over event or tooltip
var event = scheduler.getEvent(event_id) || scheduler.getEvent(dhtmlXTooltip.tooltip.event_id);
dhtmlXTooltip.tooltip.event_id = event.id;
var text = scheduler.templates.tooltip_text(event.start_date, event.end_date, event);
if (_isIE) { //make a copy of event, will be used in timed call
var evt = document.createEventObject(ev);
}
dhtmlXTooltip.delay(dhtmlXTooltip.show, dhtmlXTooltip, [ evt||ev , text]); // showing tooltip
} else {
dhtmlXTooltip.delay(dhtmlXTooltip.hide, dhtmlXTooltip, []);
}
});
/* Could be redifined */
scheduler.templates.tooltip_text = function(start,end,event) {
return "<b>Event:</b> "+event.text+"<br/><b>Start date:</b> "+scheduler.templates.tooltip_date_format(start)+"<br/><b>End date:</b> "+scheduler.templates.tooltip_date_format(end);
};

View File

@ -0,0 +1,411 @@
TouchScroll=function(node, nontouch, scroll, compat){
this.debug = !!nontouch;
this.compat = !!compat;
this.rough = !!scroll;
this.axisX = this.axisY = true;
if (typeof node!= "object")
node = document.getElementById(node);
this._init();
node.addEventListener("touchstart",this,false);
node.addEventListener("webkitTransitionEnd",this,false);
if (this.debug)
node.addEventListener("mousedown",this,false);
this.node = node;
for (var i=0; i < node.childNodes.length; i++)
if (node.childNodes[i].nodeType == 1){
this.area = node.childNodes[i];
break;
}
if (window.getComputedStyle(this.node).position == "static")
this.node.style.position = "relative"
this.area.style.cssText += "-webkit-transition: -webkit-transform; -webkit-user-select:none; -webkit-transform-style:preserve-3d;";
this.scrolls={};
};
TouchScroll.prototype = {
refresh:function(){
this.node.style.webkitTransformStyle="flat";
this.node.style.webkitTransformStyle="preserve-3d";
},
scrollTo:function(x,y,speed){
this.set_matrix({e:x,f:y}, (speed||0));
},
onscroll:function(x,y){},
handleEvent:function(ev){
return this["ev_"+ev.type](ev);
},
get_matrix:function(node){
return new WebKitCSSMatrix(window.getComputedStyle(node||this.area).webkitTransform);
},
set_matrix:function(value,speed,node){
(node||this.area).style.webkitTransform = "translate("+Math.round(value.e)+"px,"+Math.round(value.f)+"px)";
(node||this.area).style.webkitTransitionDuration= speed;
},
ev_touchstart:function(ev){
this.ev_mousedown(ev.touches[0]);
ev.preventDefault();
return false;
},
ev_mousedown:function(ev){
var touch = ev;
this.x = touch.pageX;
this.y = touch.pageY;
this.dx = this.node.offsetWidth;
this.dy = this.node.offsetHeight;
this.mx = this.area.scrollWidth;
this.my = this.area.scrollHeight;
this.target = touch.target;
if (!this.rough){
var temp = this.get_matrix();
this.target_x = temp.e;
this.target_y = temp.f;
if (!this.scroll && this.compat){
temp.e = this.node.scrollLeft*-1;
temp.f = this.node.scrollTop*-1;
this.node.scrollTop = this.node.scrollLeft = 0;
}
this.set_matrix(temp,0);
this._correct_scroll(this.target_x, this.target_y);
}
this.scroll_x = this.scroll_y = this.scroll = false;
this._init_events();
},
ev_touchend:function(){
return this.ev_mouseup();
},
ev_mouseup:function(){
this._deinit_events();
if (!this.scroll){
this._remove_scroll();
var ev = document.createEvent("MouseEvent");
ev.initMouseEvent("click",true, true);
this.target.dispatchEvent(ev);
}
this.target = null;
},
ev_webkitTransitionEnd:function(){
if (this.target || !this.scroll) return;
this._remove_scroll();
var temp = this.get_matrix();
this.node.firstChild._scrollTop = -1*temp.f;
if (this.compat && (temp.e||temp.f)){
var y = temp.f; var x = temp.e;
temp.e = temp.f = 0;
this.set_matrix(temp,0);
this.node.scrollTop = -1*y;
this.node.scrollLeft = -1*x;
}
this.scroll = false;
},
ev_touchmove:function(ev){
return this.ev_mousemove(ev.touches[0]);
},
ev_mousemove:function(ev){
if (!this.target) return;
var touch = ev;
var dx = (touch.pageX - this.x)*(this.axisX?5:0);//Math.min(3,this.mx/this.dx);
var dy = (touch.pageY - this.y)*(this.axisY?5:0);//Math.min(3,this.my/this.dy);
if (Math.abs(dx)<10 && Math.abs(dy)<10) return;
if (Math.abs(dx)>50)
this.scroll_x=true;
if (Math.abs(dy)>50)
this.scroll_y=true;
if (this.scroll_x || this.scroll_y){
this.x = touch.pageX; this.y = touch.pageY;
this.scroll = true;
var temp = this.get_matrix();
dx = dx + (this.target_x - temp.e);
dy = dy + (this.target_y - temp.f);
var speed = "2000ms";
var fast = "500ms";
this.target_x = dx+temp.e;
this.target_y = dy+temp.f;
if (this.target_x > 0) {
this.target_x = 0;
speed = fast;
}
if (this.target_y > 0) {
this.target_y = 0;
speed = fast;
}
if (this.mx - this.dx + this.target_x < 0){
this.target_x = - this.mx + this.dx;
speed = fast;
}
if (this.my - this.dy + this.target_y < 0){
this.target_y = - this.my + this.dy;
speed = fast;
}
this.set_matrix({e:this.target_x,f:this.target_y},speed);
this._add_scroll(temp.e, temp.f);
this._correct_scroll(this.target_x, this.target_y, speed);
this.onscroll(this.target_x, this.target_y);
}
return false;
},
_correct_scroll:function(x,y,speed){
if (this.scrolls.x){
var stemp = this.get_matrix(this.scrolls.x);
var sx = this.dx*x/this.mx;
this.set_matrix({e:-1*sx,f:0}, speed, this.scrolls.x);
}
if (this.scrolls.y){
var stemp = this.get_matrix(this.scrolls.y);
var sy = this.dy*y/this.my;
this.set_matrix({e:0,f:-1*sy}, speed, this.scrolls.y);
}
},
_remove_scroll:function(){
if (this.scrolls.x)
this.scrolls.x.parentNode.removeChild(this.scrolls.x);
if (this.scrolls.y)
this.scrolls.y.parentNode.removeChild(this.scrolls.y);
this.scrolls = {};
},
_add_scroll:function(){
if (this.scrolls.ready) return;
var d;
if (this.my>5 && this.axisY){
var h = this.dy*this.dy/this.my-1;
this.scrolls.y = d = document.createElement("DIV");
d.className="dhx_scroll_y";
d.style.height = h +"px";
this.node.appendChild(d);
}
if (this.mx>5 && this.axisX){
var h = this.dx*this.dx/this.mx;
this.scrolls.x = d = document.createElement("DIV");
d.className="dhx_scroll_x";
d.style.width = h +"px";
this.node.appendChild(d);
}
var temp = this.get_matrix();
this._correct_scroll(temp.e, temp.f, 0);
this.scrolls.ready = true;
},
_init_events:function(){
document.addEventListener("touchmove",this,false);
document.addEventListener("touchend",this,false);
if (this.debug){
document.addEventListener("mousemove",this,false);
document.addEventListener("mouseup",this,false);
}
},
_deinit_events:function(){
document.removeEventListener("touchmove",this,false);
document.removeEventListener("touchend",this,false);
if (this.debug){
document.removeEventListener("mousemove",this,false);
document.removeEventListener("mouseup",this,false);
}
},
_init:function(){
document.styleSheets[0].insertRule(".dhx_scroll_x { width:50px;height:4px;background:rgba(0, 0, 0, 0.4);position:absolute; left:0px; bottom:3px; border:1px solid transparent; -webkit-border-radius:4px;-webkit-transition: -webkit-transform;}",0);
document.styleSheets[0].insertRule(".dhx_scroll_y { width:4px;height:50px;background:rgba(0, 0, 0, 0.4);position:absolute; top:0px; right:3px; border:1px solid transparent; -webkit-border-radius:4px;-webkit-transition: -webkit-transform;}",0);
this._init = function(){};
}
};
scheduler._ipad_before_init=function(){
scheduler._ipad_before_init=function(){};
scheduler.xy.scroll_width = 0;
var tabs = scheduler._els["dhx_cal_tab"];
var right = 42;
for (var i=tabs.length-1; i >=0; i--) {
tabs[i].style.cssText+="top:4px;";
tabs[i].style.left="auto";
tabs[i].style.right = right+"px";
if (i==0)
tabs[i].style.cssText+=";-webkit-border-top-left-radius: 5px; -webkit-border-bottom-left-radius: 5px;";
if (i==tabs.length-1)
tabs[i].style.cssText+=";-webkit-border-top-right-radius: 5px; -webkit-border-bottom-right-radius: 5px;";
right+=100;
};
scheduler._els["dhx_cal_prev_button"][0].innerHTML = "&lt;";
scheduler._els["dhx_cal_next_button"][0].innerHTML = "&gt;";
var d = document.createElement("div");
d.className = "dhx_cal_add_button";
d.innerHTML = "+ ";
d.onclick = function(){
var now = new Date();
if (now > scheduler._min_date && now < scheduler._max_date)
scheduler.addEventNow();
else
scheduler.addEventNow(scheduler._min_date.valueOf());
}
scheduler._els["dhx_cal_navline"][0].appendChild(d);
this._obj.onmousedown = this._obj.onmouseup = this._obj.onmousemove = function(){};
var long_tap = null;
var long_tap_pos = [];
this._obj.ontouchmove=function(e){
if (long_tap){
var dx = Math.abs(e.touches[0].pageX - long_tap_pos[0]);
var dy = Math.abs(e.touches[0].pageY - long_tap_pos[1]);
if (dx>50 || dy>50)
long_tap = window.clearTimeout(long_tap);
}
if (scheduler.config.touch_actions)
scheduler._on_mouse_move(e.touches[0]);
}
this._obj.ontouchstart = function(e){
if (scheduler._lightbox_id) return;
long_tap = window.setTimeout(function(){
scheduler._on_dbl_click(e.touches[0],(e.target.className?e.target:e.target.parentNode));
},400);
long_tap_pos = [e.touches[0].pageX, e.touches[0].pageY];
if (scheduler.config.touch_actions)
scheduler._on_mouse_down(e.touches[0]);
}
this._obj.ontouchend = function(e){
if (long_tap)
long_tap = window.clearTimeout(long_tap);
if (scheduler.config.touch_actions)
scheduler._on_mouse_up(e.touches[0]);
}
}
scheduler._ipad_init=function(){
var d = document.createElement("DIV");
var data = scheduler._els["dhx_cal_data"][0];
d.appendChild(data);
d.style.cssText = "overflow:hidden; width:100%; overflow:hidden;position:relative;";
this._obj.appendChild(d);
data.style.overflowY = "hidden";
var scroll = new TouchScroll(d);
scroll.axisX = false;
scheduler._ipad_init = function(){
data.parentNode.style.height = data.style.height;
data.parentNode.style.top = data.style.top;
data.style.height = data.scrollHeight+"px";
data.style.top = "0px";
if (Math.abs(data.parentNode.offsetHeight - data.offsetHeight)<5){
scroll.axisY=false;
scroll.scrollTo(0,0,0);
} else
scroll.axisY=true;
scroll.refresh();
};
scheduler.attachEvent("onSchedulerResize", function(){
setTimeout(function(){
scheduler._ipad_init();
});
return true;
})
scheduler._ipad_init();
};
scheduler.attachEvent("onViewChange",function(){
scheduler._ipad_init();
});
scheduler.attachEvent("onBeforeViewChange",function(){
scheduler._ipad_before_init();
return true;
});
scheduler.showCover=function(box){
this.show_cover();
if (box){
box.style.display="block";
var pos = getOffset(this._obj);
box.style.top = box.offsetHeight*-1+"px";
box.style.left = Math.round(pos.left+(this._obj.offsetWidth-box.offsetWidth)/2)+"px";
}
var node =this._get_lightbox();
node.style.webkitTransform = "translate(0px,"+(box.offsetHeight+41)+"px)";
node.style.webkitTransitionDuration = "500ms";
};
scheduler.hideCover=function(box){
if (box){
box.style.webkitTransform = "translate(0px,"+(box.offsetHeight+41)*-1+"px)";
box.style.webkitTransitionDuration = "500ms";
}
this.hide_cover();
}
scheduler.config.lightbox.sections[0].height = 100;
if (scheduler.form_blocks.calendar_time){
scheduler.config.lightbox.sections[1].type = "calendar_time";
scheduler._mini_cal_arrows = ["&lt;", "&gt;"];
}
scheduler.xy.menu_width = 0;
scheduler.attachEvent("onClick", function(){
return false;
});
scheduler.locale.labels.new_event="";
scheduler._mouse_coords=function(ev){
var pos;
var b=document.body;
var d = document.documentElement;
if(ev.pageX || ev.pageY)
pos={x:ev.pageX, y:ev.pageY};
else pos={
x:ev.clientX + (b.scrollLeft||d.scrollLeft||0) - b.clientLeft,
y:ev.clientY + (b.scrollTop||d.scrollTop||0) - b.clientTop
}
//apply layout
pos.x-=getAbsoluteLeft(this._obj)+(this._table_view?0:this.xy.scale_width);
var top =
pos.y-=getAbsoluteTop(this._obj)+this.xy.nav_height+this._dy_shift+this.xy.scale_height-(this._els["dhx_cal_data"][0]._scrollTop||0);
//transform to date
if (!this._table_view){
pos.x=Math.max(0,Math.ceil(pos.x/this._cols[0])-1);
pos.y=Math.max(0,Math.ceil(pos.y*60/(this.config.time_step*this.config.hour_size_px))-1)+this.config.first_hour*(60/this.config.time_step);
} else {
var dy=0;
for (dy=1; dy < this._colsS.heights.length; dy++)
if (this._colsS.heights[dy]>pos.y) break;
pos.y=(Math.max(0,Math.ceil(pos.x/this._cols[0])-1)+Math.max(0,dy-1)*7)*24*60/this.config.time_step;
pos.x=0;
}
return pos;
}

View File

@ -0,0 +1,275 @@
scheduler.attachEvent("onTimelineCreated", function (obj){
if(obj.render == "tree") {
obj.y_unit_original = obj.y_unit;
obj.y_unit = scheduler._getArrayToDisplay(obj.y_unit_original);
scheduler.form_blocks[obj.name]={
render:function(sns) {
var _result = "<div class='dhx_section_timeline' style='overflow: hidden; height: "+sns.height+"px'></div>";
return _result;
},
set_value:function(node,value,ev,config){
var options = scheduler._getArrayForSelect(scheduler.matrix[config.type].y_unit_original, config.type);
node.innerHTML = '';
var temp_select = document.createElement('select');
node.appendChild(temp_select);
var select = node.getElementsByTagName('select')[0];
for(var i=0; i<options.length; i++) {
var temp_option = document.createElement('option');
temp_option.value = options[i].key;
if(temp_option.value == ev[scheduler.matrix[config.type].y_property])
temp_option.selected = true;
temp_option.innerHTML = options[i].label;
select.appendChild(temp_option);
}
},
get_value:function(node,ev,config){
return node.firstChild.value;
},
focus:function(node){
}
};
};
});
scheduler.attachEvent("onBeforeViewRender", function (render_name, y_unit, timeline){
var res = {};
if(render_name == "tree"){
var height;
// section 1
var tr_className, style_height, td_className;
var div_expand;
// section 3
var table_className;
if(y_unit.children) {
height = timeline.folder_dy||timeline.dy;
if(timeline.folder_dy && !timeline.section_autoheight) {
style_height = "height:"+timeline.folder_dy+"px;";
}
tr_className = "dhx_row_folder";
td_className = "dhx_matrix_scell folder";
div_expand = "<div class='dhx_scell_expand'>"+((y_unit.open)?'-':'+')+"</div>";
table_className = (timeline.folder_events_available)?"dhx_data_table folder_events":"dhx_data_table folder";
} else {
height = timeline.dy;
tr_className = "dhx_row_item";
td_className = "dhx_matrix_scell item";
div_expand = '';
table_className = "dhx_data_table";
}
td_content = "<div class='dhx_scell_level"+y_unit.level+"'>"+div_expand+"<div class='dhx_scell_name'>"+(scheduler.templates[timeline.name+'_scale_label'](y_unit.key, y_unit.label, timeline)||y_unit.label)+"</div></div>";
res = {
height: height,
style_height: style_height,
//section 1
tr_className: tr_className,
td_className: td_className,
td_content: td_content,
//section 3
table_className: table_className
};
};
return res;
});
var section_id_before; // section id of the event before dragging (to bring it back if user drop's event on folder without folder_events_available)
scheduler.attachEvent("onBeforeEventChanged", function(event_object, native_event, is_new) {
if (scheduler._isRender("tree")) { // if mode's render == tree
var section = scheduler.getSection(event_object.section_id);
if (typeof section.children != 'undefined' && !scheduler.matrix[scheduler._mode].folder_events_available) {
if (!is_new) { //if old - move back
event_object[scheduler.matrix[scheduler._mode].y_property] = section_id_before;
}
return false;
}
}
return true;
});
scheduler.attachEvent("onBeforeDrag", function (event_id, mode, native_event_object){
var cell = scheduler._locate_cell_timeline(native_event_object);
if(cell) {
var section_id = scheduler.matrix[scheduler._mode].y_unit[cell.y].key;
if(typeof scheduler.matrix[scheduler._mode].y_unit[cell.y].children != "undefined" && !scheduler.matrix[scheduler._mode].folder_events_available) {
return false;
}
}
if(scheduler._isRender("tree")) {
ev = scheduler.getEvent(event_id);
section_id_before = section_id||ev[scheduler.matrix[scheduler._mode].y_property]; // either event id or section_id will be available
}
return true;
});
scheduler._getArrayToDisplay = function(array){ // function to flatten out hierarhical array, used for tree view
var result = [];
var fillResultArray = function(array, lvl){
var level = lvl||0;
for(var i=0; i<array.length; i++) {
array[i].level = level;
if(typeof array[i].children != "undefined" && typeof array[i].key == "undefined")
array[i].key=scheduler.uid();
result.push(array[i]);
if(array[i].open && array[i].children) {
fillResultArray(array[i].children, level+1);
}
}
};
fillResultArray(array);
return result;
};
scheduler._getArrayForSelect = function(array, mode){ // function to flatten out hierarhical array, used for tree view
var result = [];
var fillResultArray = function(array){
for(var i=0; i<array.length; i++) {
if(scheduler.matrix[mode].folder_events_available) {
result.push(array[i]);
}
else {
if(typeof array[i].children == "undefined") {
result.push(array[i]);
}
}
if(array[i].children)
fillResultArray(array[i].children, mode);
};
};
fillResultArray(array);
return result;
};
/*
scheduler._toggleFolderDisplay(4) -- toggle display of the section with key 4 (closed -> open)
scheduler._toggleFolderDisplay(4, true) -- open section with the key 4 (doesn't matter what status was before). False - close.
scheduler._toggleFolderDisplay(4, false, true) -- close ALL sections. Key is not used in such condition.
*/
scheduler._toggleFolderDisplay = function(key, status, all_sections){ // used for tree view
var marked;
var toggleElement = function(key, array, status, all_sections) {
for (var i=0; i<array.length; i++) {
if((array[i].key == key || all_sections) && array[i].children) {
array[i].open = (typeof status != "undefined") ? status : !array[i].open;
marked = true;
if(!all_sections && marked)
break;
}
if(array[i].children) {
toggleElement(key,array[i].children, status, all_sections);
}
}
};
toggleElement(key,scheduler.matrix[scheduler._mode].y_unit_original, status, all_sections);
scheduler.matrix[scheduler._mode].y_unit = scheduler._getArrayToDisplay(scheduler.matrix[scheduler._mode].y_unit_original);
scheduler.callEvent("onOptionsLoad",[]);
};
scheduler.attachEvent("onCellClick", function (x, y, a, b, event){
if(scheduler._isRender("tree")) {
if(!scheduler.matrix[scheduler._mode].folder_events_available) {
if(typeof scheduler.matrix[scheduler._mode].y_unit[y].children != "undefined") {
scheduler._toggleFolderDisplay(scheduler.matrix[scheduler._mode].y_unit[y].key);
}
}
}
});
scheduler.attachEvent("onYScaleClick", function (index, value, event){
if(scheduler._isRender("tree")) {
if(typeof value.children != "undefined") {
scheduler._toggleFolderDisplay(value.key);
}
}
});
scheduler.getSection = function(id){
if(scheduler._isRender("tree")) {
var obj;
var findElement = function(key, array) {
for (var i=0; i<array.length; i++) {
if(array[i].key == key)
obj = array[i];
if(array[i].children)
findElement(key,array[i].children);
}
};
findElement(id, scheduler.matrix[scheduler._mode].y_unit_original);
return obj||null;
}
};
scheduler.deleteSection = function(id){
if(scheduler._isRender("tree")) {
var result = false;
var deleteElement = function(key, array) {
for (var i=0; i<array.length; i++) {
if(array[i].key == key) {
array.splice(i,1);
result = true;
}
if(result)
break;
if(array[i].children)
deleteElement(key,array[i].children);
}
};
deleteElement(id, scheduler.matrix[scheduler._mode].y_unit_original);
scheduler.matrix[scheduler._mode].y_unit = scheduler._getArrayToDisplay(scheduler.matrix[scheduler._mode].y_unit_original);
scheduler.callEvent("onOptionsLoad",[]);
return result;
}
};
scheduler.addSection = function(obj, parent_id){
if(scheduler._isRender("tree")) {
var result = false;
var addElement = function(obj, parent_key, array) {
if(!parent_id) {
array.push(obj);
result = true;
}
else {
for (var i=0; i<array.length; i++) {
if(array[i].key == parent_key && typeof array[i].children != "undefined") {
array[i].children.push(obj);
result = true;
}
if(result)
break;
if(array[i].children)
addElement(obj,parent_key,array[i].children);
}
}
};
addElement(obj, parent_id, scheduler.matrix[scheduler._mode].y_unit_original);
scheduler.matrix[scheduler._mode].y_unit = scheduler._getArrayToDisplay(scheduler.matrix[scheduler._mode].y_unit_original);
scheduler.callEvent("onOptionsLoad",[]);
return result;
}
};
scheduler.openAllSections = function() {
if(scheduler._isRender("tree"))
scheduler._toggleFolderDisplay(1, true, true);
};
scheduler.closeAllSections = function() {
if(scheduler._isRender("tree"))
scheduler._toggleFolderDisplay(1, false, true);
};
scheduler.openSection = function(section_id){
if(scheduler._isRender("tree"))
scheduler._toggleFolderDisplay(section_id, true);
};
scheduler.closeSection = function(section_id){
if(scheduler._isRender("tree"))
scheduler._toggleFolderDisplay(section_id, false);
};

View File

@ -0,0 +1,30 @@
scheduler.attachEvent("onTemplatesReady",function(){
var first = true;
var s2d = scheduler.date.str_to_date("%Y-%m-%d");
var d2s = scheduler.date.date_to_str("%Y-%m-%d");
scheduler.attachEvent("onBeforeViewChange",function(om,od,m,d){
if (first){
first = false;
var p={};
var data=(document.location.hash||"").replace("#","").split(",");
for (var i=0; i < data.length; i++) {
var s = data[i].split("=");
if (s.length==2)
p[s[0]]=s[1];
}
if (p.date || p.mode){
try{
this.setCurrentView((p.date?s2d(p.date):null),(p.mode||null));
} catch(e){
//assuming that mode is not available anymore
this.setCurrentView((p.date?s2d(p.date):null),m);
}
return false;
}
}
var text = "#date="+d2s(d||od)+",mode="+(m||om);
document.location.hash = text;
return true;
});
});

View File

@ -0,0 +1,13 @@
scheduler.attachEvent("onLightBox",function(){
if (this._cover){
try{
this._cover.style.height = this.expanded ? "100%" : ((document.body.parentNode||document.body).scrollHeight+"px");
} catch(e) {};
}
});
scheduler.form_blocks.select.set_value=function(node,value,ev){
if (typeof value == "undefined" || value === "")
value = (node.firstChild.options[0]||{}).value;
node.firstChild.value=value||"";
};

View File

@ -0,0 +1,260 @@
scheduler.config.year_x = 4;
scheduler.config.year_y = 3;
scheduler.config.year_mode_name = "year";
scheduler.xy.year_top = 0;
scheduler.templates.year_date = function(date){
return scheduler.date.date_to_str(scheduler.locale.labels.year_tab+" %Y")(date);
};
scheduler.templates.year_month = scheduler.date.date_to_str("%F");
scheduler.templates.year_scale_date = scheduler.date.date_to_str("%D");
scheduler.templates.year_tooltip = function(s,e,ev){
return ev.text
};
(function(){
var is_year_mode = function(){
return scheduler._mode == scheduler.config.year_mode_name;
}
scheduler.dblclick_dhx_month_head=function(e){
if (is_year_mode()){
var t = (e.target||e.srcElement);
if (t.parentNode.className.indexOf("dhx_before")!=-1 || t.parentNode.className.indexOf("dhx_after")!=-1) return false;
var start = this.templates.xml_date(t.parentNode.parentNode.parentNode.parentNode.parentNode.parentNode.getAttribute("date"));
start.setDate(parseInt(t.innerHTML,10));
var end = this.date.add(start,1,"day")
if (!this.config.readonly && this.config.dblclick_create)
this.addEventNow(start.valueOf(), end.valueOf(), e);
}
}
var chid = scheduler.changeEventId;
scheduler.changeEventId = function(){
chid.apply(this,arguments);
if (is_year_mode())
this.year_view(true);
}
var old = scheduler.render_data;
var to_attr = scheduler.date.date_to_str("%Y/%m/%d");
var from_attr = scheduler.date.str_to_date("%Y/%m/%d");
scheduler.render_data=function(evs){
if (!is_year_mode()) return old.apply(this,arguments);
for (var i=0; i<evs.length; i++)
this._year_render_event(evs[i]);
}
var clear = scheduler.clear_view;
scheduler.clear_view = function(){
if (!is_year_mode()) return clear.apply(this,arguments);
for (var i=0; i < marked.length; i++) {
marked[i].className = "dhx_month_head";
marked[i].setAttribute("date","")
};
marked = [];
}
scheduler.hideToolTip=function(){
if (this._tooltip){
this._tooltip.style.display = "none";
this._tooltip.date = new Date(9999,1,1);
}
}
scheduler.showToolTip=function(date,pos,e,src){
if (this._tooltip){
if (this._tooltip.date.valueOf() == date.valueOf()) return;
this._tooltip.innerHTML="";
} else {
var t = this._tooltip = document.createElement("DIV");
t.className = "dhx_tooltip";
document.body.appendChild(t);
t.onclick = scheduler._click.dhx_cal_data;
}
var evs = this.getEvents(date,this.date.add(date,1,"day"));
var html = "";
for (var i=0; i<evs.length; i++){
html+="<div class='dhx_tooltip_line' event_id='"+evs[i].id+"'>"
html+="<div class='dhx_tooltip_date'>"+(evs[i]._timed?this.templates.event_date(evs[i].start_date):"")+"</div>";
html+="<div class='dhx_event_icon icon_details'>&nbsp;</div>";
html+=this.templates.year_tooltip(evs[i].start_date, evs[i].end_date,evs[i])+"</div>";
}
this._tooltip.style.display="";
this._tooltip.style.top = "0px";
if (document.body.offsetWidth-pos.left-this._tooltip.offsetWidth < 0)
this._tooltip.style.left = pos.left-this._tooltip.offsetWidth+"px";
else
this._tooltip.style.left = pos.left+src.offsetWidth+"px";
this._tooltip.date = date;
this._tooltip.innerHTML = html;
if (document.body.offsetHeight-pos.top-this._tooltip.offsetHeight < 0)
this._tooltip.style.top= pos.top-this._tooltip.offsetHeight+src.offsetHeight+"px";
else
this._tooltip.style.top= pos.top+"px";
}
scheduler._init_year_tooltip=function(){
dhtmlxEvent(scheduler._els["dhx_cal_data"][0], "mouseover", function(e){
if (!is_year_mode()) return;
var e = e || event;
var src = e.target||e.srcElement;
if ((src.className||"").indexOf("dhx_year_event")!=-1)
scheduler.showToolTip(from_attr(src.getAttribute("date")),getOffset(src),e,src);
else
scheduler.hideToolTip();
})
this._init_year_tooltip=function(){};
}
scheduler.attachEvent("onSchedulerResize",function(){
if (is_year_mode()){
this.year_view(true);
return false;
}
return true;
});
scheduler._get_year_cell=function(d){
//there can be more than 1 year in view
//year can start not from January
var m = d.getMonth()+12*(d.getFullYear()-this._min_date.getFullYear())-this.week_starts._month;
var t = this._els["dhx_cal_data"][0].childNodes[m];
var d = this.week_starts[m]+d.getDate()-1;
return t.childNodes[2].firstChild.rows[Math.floor(d/7)].cells[d%7].firstChild;
}
var marked = [];
scheduler._mark_year_date=function(d,ev){
var c = this._get_year_cell(d);
c.className = "dhx_month_head dhx_year_event "+this.templates.event_class(ev.start_date,ev.end_date,ev);
c.setAttribute("date",to_attr(d))
marked.push(c);
}
scheduler._unmark_year_date=function(d){
this._get_year_cell(d).className = "dhx_month_head";
}
scheduler._year_render_event=function(ev){
var d = ev.start_date;
if (d.valueOf()<this._min_date.valueOf())
d = this._min_date;
else d = this.date.date_part(new Date(d));
while (d<ev.end_date){
this._mark_year_date(d,ev);
d = this.date.add(d,1,"day");
if (d.valueOf()>=this._max_date.valueOf())
return;
}
}
scheduler.year_view=function(mode){
if (mode){
var temp = scheduler.xy.scale_height;
scheduler.xy.scale_height = -1;
}
scheduler._els["dhx_cal_header"][0].style.display=mode?"none":"";
scheduler.set_sizes();
if (mode)
scheduler.xy.scale_height = temp;
scheduler._table_view = mode;
if (this._load_mode && this._load()) return;
if (mode){
scheduler._init_year_tooltip();
scheduler._reset_year_scale();
scheduler.render_view_data();
} else {
scheduler.hideToolTip();
}
}
scheduler._reset_year_scale = function(){
this._cols=[]; this._colsS={};
var week_starts = []; //start day of first week in each month
var b=this._els["dhx_cal_data"][0];
var c = this.config;
b.scrollTop=0; //fix flickering in FF
b.innerHTML="";
var dx = Math.floor(parseInt(b.style.width)/c.year_x);
var dy = Math.floor((parseInt(b.style.height)-scheduler.xy.year_top)/c.year_y);
if (dy<190) {
dy = 190;
dx = Math.floor((parseInt(b.style.width)-scheduler.xy.scroll_width)/c.year_x);
}
var summ = dx-11;
var left = 0;
var week_template = document.createElement("div");
var dummy_date = this.date.week_start(new Date());
for (var i=0; i<7; i++){
this._cols[i]=Math.floor(summ/(7-i));
this._render_x_header(i,left,dummy_date,week_template);
dummy_date = this.date.add(dummy_date,1,"day");
summ-=this._cols[i];
left+=this._cols[i];
}
week_template.lastChild.className+=" dhx_scale_bar_last";
var sd = this.date[this._mode+"_start"](this.date.copy(this._date));
var ssd=sd;
for (var i=0; i<c.year_y; i++)
for (var j=0; j<c.year_x; j++){
var d = document.createElement("DIV");
d.style.cssText="position:absolute;";
d.setAttribute("date",this.templates.xml_format(sd));
d.innerHTML="<div class='dhx_year_month'></div><div class='dhx_year_week'>"+week_template.innerHTML+"</div><div class='dhx_year_body'></div>";
d.childNodes[0].innerHTML=this.templates.year_month(sd);
var dd = this.date.week_start(sd);
var ed = this._reset_month_scale(d.childNodes[2],sd,dd);
var r=d.childNodes[2].firstChild.rows;
for (var k=r.length; k<6; k++) {
r[0].parentNode.appendChild(r[0].cloneNode(true));
for (var ri=0; ri < r[k].childNodes.length; ri++) {
r[k].childNodes[ri].className = "dhx_after";
r[k].childNodes[ri].firstChild.innerHTML = scheduler.templates.month_day(ed);
ed = scheduler.date.add(ed,1,"day");
};
}
b.appendChild(d);
var dt = Math.round((dy-190)/2);
d.style.marginTop=dt+"px";
this.set_xy(d,dx-10,dy-dt-10,dx*j+5,dy*i+5+scheduler.xy.year_top);
week_starts[i*c.year_x+j] = (sd.getDay()-(this.config.start_on_monday?1:0)+7)%7;
sd = this.date.add(sd,1,"month");
}
this._els["dhx_cal_date"][0].innerHTML=this.templates[this._mode+"_date"](ssd,sd,this._mode);
this.week_starts = week_starts;
week_starts._month = ssd.getMonth();
this._min_date = ssd;
this._max_date = sd;
}
})();

View File

@ -0,0 +1,65 @@
scheduler.ical={
parse:function(str){
var data = str.match(RegExp(this.c_start+"[^\f]*"+this.c_end,""));
if (!data.length) return;
//unfolding
data[0]=data[0].replace(/[\r\n]+(?=[a-z \t])/g," ");
//drop property
data[0]=data[0].replace(/\;[^:\r\n]*/g,"");
var incoming=[];
var match;
var event_r = RegExp("(?:"+this.e_start+")([^\f]*?)(?:"+this.e_end+")","g");
while (match=event_r.exec(data)){
var e={};
var param;
var param_r = /[^\r\n]+[\r\n]+/g;
while (param=param_r.exec(match[1]))
this.parse_param(param.toString(),e);
if (e.uid && !e.id) e.id = e.uid; //fallback to UID, when ID is not defined
incoming.push(e);
}
return incoming;
},
parse_param:function(str,obj){
var d = str.indexOf(":");
if (d==-1) return;
var name = str.substr(0,d).toLowerCase();
var value = str.substr(d+1).replace(/\\\,/g,",").replace(/[\r\n]+$/,"");
if (name=="summary")
name="text";
else if (name=="dtstart"){
name = "start_date";
value = this.parse_date(value,0,0);
}
else if (name=="dtend"){
name = "end_date";
if (obj.start_date && obj.start_date.getHours()==0)
value = this.parse_date(value,24,00);
else
value = this.parse_date(value,23,59);
}
obj[name]=value;
},
parse_date:function(value,dh,dm){
var t = value.split("T");
if (t[1]){
dh=t[1].substr(0,2);
dm=t[1].substr(2,2);
}
var dy = t[0].substr(0,4);
var dn = parseInt(t[0].substr(4,2),10)-1;
var dd = t[0].substr(6,2);
if (scheduler.config.server_utc && !t[1]) { // if no hours/minutes were specified == full day event
return new Date(Date.UTC(dy,dn,dd,dh,dm)) ;
}
return new Date(dy,dn,dd,dh,dm);
},
c_start:"BEGIN:VCALENDAR",
e_start:"BEGIN:VEVENT",
e_end:"END:VEVENT",
c_end:"END:VCALENDAR"
};

View File

@ -0,0 +1,179 @@
.dhx_cal_container{
background-color:#C2D5FC;
font-family:Tahoma;
font-size:8pt;
position:relative;
overflow:hidden;
}
.dhx_cal_container div{
-moz-user-select:none;
-moz-user-select:-moz-none;
}
.dhx_cal_navline{
height:20px;
position:absolute;
z-index:3;
width:750px;
color:#2F3A48;
}
.dhx_cal_navline div{
position:absolute;
top:2px;
white-space:nowrap;
}
.dhx_cal_navline .dhx_cal_date{
font-weight:600;
left:210px;
}
.dhx_cal_button .dhx_left_bg{
width:1px; overflow:hidden;
height:17px;
z-index:20;
top:0px;
}
.dhx_cal_prev_button{
background-image:url(imgs/buttons.png);
background-position:0px 0px;
width:29px; height:17px;
left:50px; cursor:pointer;
}
.dhx_cal_next_button{
background-image:url(imgs/buttons.png);
background-position: -30px 0px;
width:29px; height:17px;
left:80px; cursor:pointer;
}
.dhx_cal_today_button{
background-image:url(imgs/buttons.png);
background-position: -60px 0px;
width:75px; height:17px;
left:112px; cursor:pointer;
text-align:center;
text-decoration:underline;
}
.dhx_cal_tab{
background-image:url(imgs/white_tab.png);
width:61px; height:19px;
text-align:center;
text-decoration:underline;
padding-top:3px; cursor:pointer;
}
.dhx_cal_tab.active{
background-image:url(imgs/blue_tab.png);
text-decoration:none;
height:20px;
padding-top:2px; cursor:default;
font-weight:bold;
}
.dhx_cal_header{
position:absolute;
left:10px; top:23px;
width:750px;
border-top:1px dotted #8894A3;
border-right:1px dotted #8894A3;
z-index:2;
overflow:hidden;
color:#2F3A48;
}
.dhx_cal_data{
border-top:1px dotted #8894A3;
position:absolute;
top:44px;
width:600px;
overflow-y:auto;
overflow-x:hidden;
}
.dhx_scale_bar{
position:absolute;
text-align:center;
background-color:#C2D5FC;
padding-top:3px;
border-left:1px dotted #586A7E;
}
.dhx_scale_holder{
position:absolute;
border-right:1px dotted #586A7E;
background-image:url(imgs/databg.png);
}
.dhx_scale_holder_now{
position:absolute;
border-right:1px dotted #586A7E;
background-image:url(imgs/databg_now.png);
}
.dhx_scale_hour{
height:41px;
width:50px;
border-bottom:1px dotted #8894A3;
background-color:#C2D5FC;
text-align:center;
line-height:40px;
color:#586A7E;
overflow:hidden;
}
.dhx_month_head{
background-color:#EBEFF4;
color:#2F3A48;
border-right:1px dotted #586A7E;
height:18px;
padding-right:5px;
padding-top:3px;
text-align:right;
}
.dhx_month_body{
border-right:1px dotted #586A7E;
border-bottom:1px dotted #586A7E;
background-color:#FFFFFF;
}
.dhx_now .dhx_month_body{
background-color:#E2EDFF;
}
.dhx_after .dhx_month_body, .dhx_before .dhx_month_body{
background-color:#ECECEC;
}
.dhx_after .dhx_month_head, .dhx_before .dhx_month_head{
background-color:#E2E3E6;
color:#94A6BB;
}
.dhx_now .dhx_month_head{
background-color:#D1DEF4;
font-weight:bold;
}
.dhx_cal_drag{
position:absolute;
z-index:9999;
background-color:#FFE763;
border:1px solid #B7A543;
opacity:0.5;
filter:alpha(opacity=50);
}
.dhx_loading{
position:absolute;
width:128px;
height:15px;
background-image:url(imgs/loading.gif);
z-index:9999;
}
.dhx_multi_day_icon, .dhx_multi_day{
position:absolute;
background-color:#E1E6FF;
background-repeat:no-repeat;
border-bottom:1px dotted #8894A3;
border-left:1px dotted #8894A3;
}
.dhx_multi_day_icon{
background-image:url(imgs/clock_big.gif);
}
.dhx_multi_day_icon_small{
background-image:url(imgs/clock_small.gif);
}
.dhx_multi_day_icon, .dhx_multi_day_icon_small{
background-position: center center;
position:absolute;
background-color:#E1E6FF;
background-repeat:no-repeat;
border-bottom:1px dotted #8894A3;
border-left:1px dotted #8894A3;
}
.dhtmlxLayoutPolyContainer_dhx_skyblue .dhx_cal_container {
background-color: #d0e5ff;
}

View File

@ -0,0 +1,151 @@
.dhx_cal_light{
height:400px;
light:300px;
background-color:#FFE763;
font-family:Tahoma;
font-size:8pt;
border:1px solid #B7A64B;
color:#887A2E;
position:absolute;
z-index:10001;
width:580px;
height:300px;
}
.dhx_mark{
position:relative; top:3px;
background-image:url('./imgs/controls.gif');
background-position: 0px -43px;
padding-left:10px;
}
.dhx_ie6 .dhx_mark{
background-position: 6px -41px;
}
.dhx_cal_light select{
font-family:Tahoma;
font-size:8pt;
color:#887A2E;
padding:2px;
margin:0px;
}
.dhx_cal_ltitle{
padding:2px 0px 2px 5px;
overflow:hidden;
white-space:nowrap;
}
.dhx_cal_ltitle span{
white-space:nowrap;
}
.dhx_cal_lsection{
background-color:#DBCF8C;
color:#FFF4B5;
font-size:18pt;
font-weight:bold;
padding:5px 0px 3px 10px;
}
.dhx_cal_ltext{
padding:2px 0px 2px 10px;
height:130px;
height=140px;
overflow:hidden;
}
.dhx_cal_ltext textarea{
background-color:transparent;
overflow:auto;
border:none;
color:#887A2E;
height:100%;
width:100%;
outline:none !important;
}
.dhx_time{
font-weight:bold;
}
.dhx_cal_light .dhx_title{
padding-left:10px;
}
.dhx_cal_larea{
border:1px solid #DCC43E;
background-color:#FFF4B5;
overflow:hidden;
margin-left:3px;
width:572px;
height:1px;
}
.dhx_btn_set{
padding:5px 10px 0px 10px;
float:left;
}
.dhx_btn_set div{
float:left;
height:21px;
line-height:21px;
vertical-align:middle;
cursor:pointer;
}
.dhx_save_btn{
background-image:url('./imgs/controls.gif');
background-position:-84px 0px;
width:21px;
}
.dhx_cancel_btn{
background-image:url('./imgs/controls.gif');
background-position:-63px 0px;
width:20px;
}
.dhx_delete_btn{
background-image:url('./imgs/controls.gif');
background-position:-42px 0px;
width:20px;
}
.dhx_cal_cover{
width:100%;
height:100%;
position:absolute;
z-index:10000;
top:0px;
left:0px;
background-color:black;
opacity:0.1;
filter:alpha(opacity=10);
}
.dhx_custom_button{
padding:0px 3px 0px 3px;
color:#887A2E;
font-family:Tahoma;
font-size:8pt;
background-color:#FFE763;
font-weight:normal;
margin-right:5px;
margin-top:5px;
cursor:pointer;
}
.dhx_custom_button div{
cursor:pointer;
float:left;
height:21px;
line-height:21px;
vertical-align:middle;
}
.dhx_fullday_checkbox {
padding-top: 5px;
float:right;
}
.dhx_fullday_checkbox input{
vertical-align: middle;
}
.dhx_fullday_checkbox label{
font-size: 12pt;
font-weight: bold;
vertical-align: middle;
}

View File

@ -0,0 +1,340 @@
scheduler.form_blocks={
textarea:{
render:function(sns){
var height=(sns.height||"130")+"px";
return "<div class='dhx_cal_ltext' style='height:"+height+";'><textarea></textarea></div>";
},
set_value:function(node,value,ev){
node.firstChild.value=value||"";
},
get_value:function(node,ev){
return node.firstChild.value;
},
focus:function(node){
var a=node.firstChild; a.select(); a.focus();
}
},
select:{
render:function(sns){
var height=(sns.height||"23")+"px";
var html="<div class='dhx_cal_ltext' style='height:"+height+";'><select style='width:552px;'>";
for (var i=0; i < sns.options.length; i++)
html+="<option value='"+sns.options[i].key+"'>"+sns.options[i].label+"</option>";
html+="</select></div>";
return html;
},
set_value:function(node,value,ev){
if (typeof value == "undefined")
value = (node.firstChild.options[0]||{}).value;
node.firstChild.value=value||"";
},
get_value:function(node,ev){
return node.firstChild.value;
},
focus:function(node){
var a=node.firstChild; if (a.select) a.select(); a.focus();
}
},
time:{
render:function(){
//hours
var cfg = scheduler.config;
var dt = this.date.date_part(new Date());
var last = 24*60, first = 0;
if(scheduler.config.limit_time_select){
last = 60*cfg.last_hour+1;
first = 60*cfg.first_hour;
dt.setHours(cfg.first_hour);
}
var html="<select>";
for (var i=first; i<last; i+=this.config.time_step*1){
var time=this.templates.time_picker(dt);
html+="<option value='"+i+"'>"+time+"</option>";
dt=this.date.add(dt,this.config.time_step,"minute");
}
//days
html+="</select> <select>";
for (var i=1; i < 32; i++)
html+="<option value='"+i+"'>"+i+"</option>";
//month
html+="</select> <select>";
for (var i=0; i < 12; i++)
html+="<option value='"+i+"'>"+this.locale.date.month_full[i]+"</option>";
//year
html+="</select> <select>";
dt = dt.getFullYear()-5; //maybe take from config?
for (var i=0; i < 10; i++)
html+="<option value='"+(dt+i)+"'>"+(dt+i)+"</option>";
html+="</select> ";
return "<div style='height:30px; padding-top:0px; font-size:inherit;' class='dhx_cal_lsection dhx_section_time'>"+html+"<span style='font-weight:normal; font-size:10pt;'> &nbsp;&ndash;&nbsp; </span>"+html+"</div>";
},
set_value:function(node,value,ev){
var s=node.getElementsByTagName("select");
if(scheduler.config.full_day) {
if (!node._full_day){
node.previousSibling.innerHTML+="<div class='dhx_fullday_checkbox'><label><input type='checkbox' name='full_day' value='true'> "+scheduler.locale.labels.full_day+"&nbsp;</label></input></div>";
node._full_day=true;
}
var input=node.previousSibling.getElementsByTagName("input")[0];
var isFulldayEvent = (scheduler.date.time_part(ev.start_date)==0 && scheduler.date.time_part(ev.end_date)==0 && ev.end_date.valueOf()-ev.start_date.valueOf() < 2*24*60*60*1000);
input.checked = isFulldayEvent;
for(var k in s)
s[k].disabled=input.checked;
input.onclick = function(){
if(input.checked) {
var start_date = new Date(ev.start_date);
var end_date = new Date(ev.end_date);
scheduler.date.date_part(start_date);
end_date = scheduler.date.add(start_date, 1, "day")
}
for(var i in s)
s[i].disabled=input.checked;
_fill_lightbox_select(s,0,start_date||ev.start_date);
_fill_lightbox_select(s,4,end_date||ev.end_date);
}
}
if(scheduler.config.auto_end_date && scheduler.config.event_duration) {
function _update_lightbox_select() {
ev.start_date=new Date(s[3].value,s[2].value,s[1].value,0,s[0].value);
ev.end_date.setTime(ev.start_date.getTime() + (scheduler.config.event_duration * 60 * 1000));
_fill_lightbox_select(s,4,ev.end_date);
}
for(var i=0; i<4; i++) {
s[i].onchange = _update_lightbox_select;
}
}
function _fill_lightbox_select(s,i,d){
s[i+0].value=Math.round((d.getHours()*60+d.getMinutes())/scheduler.config.time_step)*scheduler.config.time_step;
s[i+1].value=d.getDate();
s[i+2].value=d.getMonth();
s[i+3].value=d.getFullYear();
}
_fill_lightbox_select(s,0,ev.start_date);
_fill_lightbox_select(s,4,ev.end_date);
},
get_value:function(node,ev){
s=node.getElementsByTagName("select");
ev.start_date=new Date(s[3].value,s[2].value,s[1].value,0,s[0].value);
ev.end_date=new Date(s[7].value,s[6].value,s[5].value,0,s[4].value);
if (ev.end_date<=ev.start_date)
ev.end_date=scheduler.date.add(ev.start_date,scheduler.config.time_step,"minute");
},
focus:function(node){
node.getElementsByTagName("select")[0].focus();
}
}
}
scheduler.showCover=function(box){
this.show_cover();
if (box){
box.style.display="block";
var pos = getOffset(this._obj);
box.style.top=Math.round(pos.top+(this._obj.offsetHeight-box.offsetHeight)/2)+"px";
box.style.left=Math.round(pos.left+(this._obj.offsetWidth-box.offsetWidth)/2)+"px";
}
}
scheduler.showLightbox=function(id){
if (!id) return;
if (!this.callEvent("onBeforeLightbox",[id])) return;
var box = this._get_lightbox();
this.showCover(box);
this._fill_lightbox(id,box);
this.callEvent("onLightbox",[id]);
}
scheduler._fill_lightbox=function(id,box){
var ev=this.getEvent(id);
var s=box.getElementsByTagName("span");
if (scheduler.templates.lightbox_header){
s[1].innerHTML="";
s[2].innerHTML=scheduler.templates.lightbox_header(ev.start_date,ev.end_date,ev);
} else {
s[1].innerHTML=this.templates.event_header(ev.start_date,ev.end_date,ev);
s[2].innerHTML=(this.templates.event_bar_text(ev.start_date,ev.end_date,ev)||"").substr(0,70); //IE6 fix
}
var sns = this.config.lightbox.sections;
for (var i=0; i < sns.length; i++) {
var node=document.getElementById(sns[i].id).nextSibling;
var block=this.form_blocks[sns[i].type];
block.set_value.call(this,node,ev[sns[i].map_to],ev, sns[i])
if (sns[i].focus)
block.focus.call(this,node);
};
scheduler._lightbox_id=id;
}
scheduler._lightbox_out=function(ev){
var sns = this.config.lightbox.sections;
for (var i=0; i < sns.length; i++) {
var node=document.getElementById(sns[i].id).nextSibling;
var block=this.form_blocks[sns[i].type];
var res=block.get_value.call(this,node,ev, sns[i]);
if (sns[i].map_to!="auto")
ev[sns[i].map_to]=res;
}
return ev;
}
scheduler._empty_lightbox=function(){
var id=scheduler._lightbox_id;
var ev=this.getEvent(id);
var box=this._get_lightbox();
this._lightbox_out(ev);
ev._timed=this.is_one_day_event(ev);
this.setEvent(ev.id,ev);
this._edit_stop_event(ev,true)
this.render_view_data();
}
scheduler.hide_lightbox=function(id){
this.hideCover(this._get_lightbox());
this._lightbox_id=null;
this.callEvent("onAfterLightbox",[]);
}
scheduler.hideCover=function(box){
if (box) box.style.display="none";
this.hide_cover();
}
scheduler.hide_cover=function(){
if (this._cover)
this._cover.parentNode.removeChild(this._cover);
this._cover=null;
}
scheduler.show_cover=function(){
this._cover=document.createElement("DIV");
this._cover.className="dhx_cal_cover";
document.body.appendChild(this._cover);
}
scheduler.save_lightbox=function(){
if (this.checkEvent("onEventSave") && !this.callEvent("onEventSave",[this._lightbox_id,this._lightbox_out({ id: this._lightbox_id}), this._new_event]))
return;
this._empty_lightbox()
this.hide_lightbox();
};
scheduler.startLightbox = function(id, box){
this._lightbox_id=id;
this.showCover(box);
}
scheduler.endLightbox = function(mode, box){
this._edit_stop_event(scheduler.getEvent(this._lightbox_id),mode);
if (mode)
scheduler.render_view_data();
this.hideCover(box);
};
scheduler.resetLightbox = function(){
scheduler._lightbox = null;
};
scheduler.cancel_lightbox=function(){
this.callEvent("onEventCancel",[this._lightbox_id, this._new_event]);
this.endLightbox(false);
this.hide_lightbox();
};
scheduler._init_lightbox_events=function(){
this._get_lightbox().onclick=function(e){
var src=e?e.target:event.srcElement;
if (!src.className) src=src.previousSibling;
if (src && src.className)
switch(src.className){
case "dhx_save_btn":
scheduler.save_lightbox();
break;
case "dhx_delete_btn":
var c=scheduler.locale.labels.confirm_deleting;
if (!c||confirm(c)) {
scheduler.deleteEvent(scheduler._lightbox_id);
scheduler._new_event = null; //clear flag, if it was unsaved event
scheduler.hide_lightbox();
}
break;
case "dhx_cancel_btn":
scheduler.cancel_lightbox();
break;
default:
if (src.className.indexOf("dhx_custom_button_")!=-1){
var index = src.parentNode.getAttribute("index");
var block=scheduler.form_blocks[scheduler.config.lightbox.sections[index].type];
var sec = src.parentNode.parentNode;
block.button_click(index,src,sec,sec.nextSibling);
}
}
};
this._get_lightbox().onkeypress=function(e){
switch((e||event).keyCode){
case scheduler.keys.edit_save:
if ((e||event).shiftKey) return;
scheduler.save_lightbox();
break;
case scheduler.keys.edit_cancel:
scheduler.cancel_lightbox();
break;
}
}
}
scheduler.setLightboxSize=function(){
var d = this._lightbox;
if (!d) return;
var con = d.childNodes[1];
con.style.height="0px";
con.style.height=con.scrollHeight+"px";
d.style.height=con.scrollHeight+50+"px";
con.style.height=con.scrollHeight+"px"; //it is incredible , how ugly IE can be
}
scheduler._get_lightbox=function(){
if (!this._lightbox){
var d=document.createElement("DIV");
d.className="dhx_cal_light";
if (/msie|MSIE 6/.test(navigator.userAgent))
d.className+=" dhx_ie6";
d.style.visibility="hidden";
d.innerHTML=this._lightbox_template;
document.body.insertBefore(d,document.body.firstChild);
this._lightbox=d;
var sns=this.config.lightbox.sections;
var html="";
for (var i=0; i < sns.length; i++) {
var block=this.form_blocks[sns[i].type];
if (!block) continue; //ignore incorrect blocks
sns[i].id="area_"+this.uid();
var button = "";
if (sns[i].button) button = "<div style='float:right;' class='dhx_custom_button' index='"+i+"'><div class='dhx_custom_button_"+sns[i].name+"'></div><div>"+this.locale.labels["button_"+sns[i].button]+"</div></div>";
html+="<div id='"+sns[i].id+"' class='dhx_cal_lsection'>"+button+this.locale.labels["section_"+sns[i].name]+"</div>"+block.render.call(this,sns[i]);
};
//localization
var ds=d.getElementsByTagName("div");
ds[4].innerHTML=scheduler.locale.labels.icon_save;
ds[7].innerHTML=scheduler.locale.labels.icon_cancel;
ds[10].innerHTML=scheduler.locale.labels.icon_delete;
//sections
ds[1].innerHTML=html;
//sizes
this.setLightboxSize();
this._init_lightbox_events(this);
d.style.display="none";
d.style.visibility="visible";
}
return this._lightbox;
}
scheduler._lightbox_template="<div class='dhx_cal_ltitle'><span class='dhx_mark'>&nbsp;</span><span class='dhx_time'></span><span class='dhx_title'></span></div><div class='dhx_cal_larea'></div><div class='dhx_btn_set'><div class='dhx_save_btn'></div><div>&nbsp;</div></div><div class='dhx_btn_set'><div class='dhx_cancel_btn'></div><div>&nbsp;</div></div><div class='dhx_btn_set' style='float:right;'><div class='dhx_delete_btn'></div><div>&nbsp;</div></div>";

View File

@ -0,0 +1,184 @@
scheduler._loaded={};
scheduler._load=function(url,from){
url=url||this._load_url;
url+=(url.indexOf("?")==-1?"?":"&")+"timeshift="+(new Date()).getTimezoneOffset();
if (this.config.prevent_cache) url+="&uid="+this.uid();
var to;
from=from||this._date;
if (this._load_mode){
var lf = this.templates.load_format;
from = this.date[this._load_mode+"_start"](new Date(from.valueOf()));
while (from>this._min_date) from=this.date.add(from,-1,this._load_mode);
to = from;
var cache_line = true;
while (to<this._max_date){
to=this.date.add(to,1,this._load_mode);
if (this._loaded[lf(from)] && cache_line)
from=this.date.add(from,1,this._load_mode);
else cache_line = false;
}
var temp_to=to;
do {
to = temp_to;
temp_to=this.date.add(to,-1,this._load_mode);
} while (temp_to>from && this._loaded[lf(temp_to)]);
if (to<=from)
return false; //already loaded
dhtmlxAjax.get(url+"&from="+lf(from)+"&to="+lf(to),function(l){scheduler.on_load(l);});
while(from<to){
this._loaded[lf(from)]=true;
from=this.date.add(from,1,this._load_mode);
}
} else
dhtmlxAjax.get(url,function(l){scheduler.on_load(l);});
this.callEvent("onXLS",[]);
return true;
}
scheduler.on_load=function(loader){
this._loading=true;
if (this._process)
var evs=this[this._process].parse(loader.xmlDoc.responseText);
else
var evs=this._magic_parser(loader);
this._not_render=true;
for (var i=0; i<evs.length; i++){
if (!this.callEvent("onEventLoading",[evs[i]])) continue;
this.addEvent(evs[i]);
}
this._not_render=false;
if (this._render_wait) this.render_view_data();
if (this._after_call) this._after_call();
this._after_call=null;
this._loading=false;
this.callEvent("onXLE",[]);
}
scheduler.json={};
scheduler.json.parse = function(data){
if (typeof data == "string"){
eval("scheduler._temp = "+data+";");
data = scheduler._temp;
}
var evs = [];
for (var i=0; i < data.length; i++){
data[i].start_date = scheduler.templates.xml_date(data[i].start_date);
data[i].end_date = scheduler.templates.xml_date(data[i].end_date);
evs.push(data[i]);
}
return evs;
}
scheduler.parse=function(data,type){
this._process=type;
this.on_load({xmlDoc:{responseText:data}});
}
scheduler.load=function(url,call){
if (typeof call == "string"){
this._process=call;
call = arguments[2];
}
this._load_url=url;
this._after_call=call;
this._load(url,this._date);
};
//possible values - day,week,month,year,all
scheduler.setLoadMode=function(mode){
if (mode=="all") mode="";
this._load_mode=mode;
};
//current view by default, or all data if "true" as parameter provided
scheduler.refresh=function(refresh_all){
alert("not implemented");
/*
this._loaded={};
this._load();
*/
}
scheduler.serverList=function(name){
return this.serverList[name] = (this.serverList[name]||[]);
}
scheduler._userdata={};
scheduler._magic_parser=function(loader){
if (!loader.getXMLTopNode){ //from a string
var xml_string = loader.xmlDoc.responseText;
loader = new dtmlXMLLoaderObject(function(){});
loader.loadXMLString(xml_string);
}
var xml=loader.getXMLTopNode("data");
if (xml.tagName!="data") return [];//not an xml
var opts = loader.doXPath("//coll_options");
for (var i=0; i < opts.length; i++) {
var bind = opts[i].getAttribute("for");
var arr = this.serverList[bind];
if (!arr) continue;
arr.splice(0,arr.length); //clear old options
var itms = loader.doXPath(".//item",opts[i]);
for (var j=0; j < itms.length; j++)
arr.push({ key:itms[j].getAttribute("value"), label:itms[j].getAttribute("label")});
}
if (opts.length)
scheduler.callEvent("onOptionsLoad",[]);
var ud=loader.doXPath("//userdata");
for (var i=0; i < ud.length; i++) {
var udx = this.xmlNodeToJSON(ud[i]);
this._userdata[udx.name]=udx.text;
};
var evs=[];
var xml=loader.doXPath("//event");
for (var i=0; i < xml.length; i++) {
evs[i]=this.xmlNodeToJSON(xml[i])
evs[i].text=evs[i].text||evs[i]._tagvalue;
evs[i].start_date=this.templates.xml_date(evs[i].start_date);
evs[i].end_date=this.templates.xml_date(evs[i].end_date);
}
return evs;
}
scheduler.xmlNodeToJSON = function(node){
var t={};
for (var i=0; i<node.attributes.length; i++)
t[node.attributes[i].name]=node.attributes[i].value;
for (var i=0; i<node.childNodes.length; i++){
var child=node.childNodes[i];
if (child.nodeType==1)
t[child.tagName]=child.firstChild?child.firstChild.nodeValue:"";
}
if (!t.text) t.text=node.firstChild?node.firstChild.nodeValue:"";
return t;
}
scheduler.attachEvent("onXLS",function(){
if (this.config.show_loading===true){
var t;
t=this.config.show_loading=document.createElement("DIV");
t.className='dhx_loading';
t.style.left = Math.round((this._x-128)/2)+"px";
t.style.top = Math.round((this._y-15)/2)+"px";
this._obj.appendChild(t);
}
});
scheduler.attachEvent("onXLE",function(){
var t;
if (t=this.config.show_loading)
if (typeof t == "object"){
this._obj.removeChild(t);
this.config.show_loading=true;
}
});

View File

@ -0,0 +1,40 @@
scheduler.locale={
date:{
month_full:["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
month_short:["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"],
day_full:["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"],
day_short:["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"]
},
labels:{
dhx_cal_today_button:"Today",
day_tab:"Day",
week_tab:"Week",
month_tab:"Month",
new_event:"New event",
icon_save:"Save",
icon_cancel:"Cancel",
icon_details:"Details",
icon_edit:"Edit",
icon_delete:"Delete",
confirm_closing:"",//Your changes will be lost, are your sure ?
confirm_deleting:"Event will be deleted permanently, are you sure?",
section_description:"Description",
section_time:"Time period",
full_day:"Full day",
/*recurring events*/
confirm_recurring:"Do you want to edit the whole set of repeated events?",
section_recurring:"Repeat event",
button_recurring:"Disabled",
button_recurring_open:"Enabled",
/*agenda view extension*/
agenda_tab:"Agenda",
date:"Date",
description:"Description",
/*year view extension*/
year_tab:"Year"
}
}

View File

@ -0,0 +1,38 @@
//v.2.0 build 90722
/*
Copyright DHTMLX LTD. http://www.dhtmlx.com
You allowed to use this component or parts of it under GPL terms
To use it on other terms or get Professional edition of the component please contact us at sales@dhtmlx.com
*/
scheduler.locale={
date:{
month_full:["كانون الثاني", "شباط", "آذار", "نيسان", "أيار", "حزيران", "تموز", "آب", "أيلول", "تشرين الأول", "تشرين الثاني", "كانون الأول"],
month_short:["يناير", "فبراير", "مارس", "أبريل", "مايو", "يونيو", "يوليو", "أغسطس", "سبتمبر", "أكتوبر", "نوفمبر", "ديسمبر"],
day_full:["الأحد", "الأثنين", "ألثلاثاء", "الأربعاء", "ألحميس", "ألجمعة", "السبت"],
day_short:["احد", "اثنين", "ثلاثاء", "اربعاء", "خميس", "جمعة", "سبت"]
},
labels:{
dhx_cal_today_button:"اليوم",
day_tab:"يوم",
week_tab:"أسبوع",
month_tab:"شهر",
new_event:"حدث جديد",
icon_save:"اخزن",
icon_cancel:"الغاء",
icon_details:"تفاصيل",
icon_edit:"تحرير",
icon_delete:"حذف",
confirm_closing:"التغييرات سوف تضيع, هل انت متأكد؟",//Your changes will be lost, are your sure ?
confirm_deleting:"الحدث سيتم حذفها نهائيا ، هل أنت متأكد؟",
section_description:"الوصف",
section_time:"الفترة الزمنية",
full_day:"طوال اليوم",
confirm_recurring:"هل تريد تحرير مجموعة كاملة من الأحداث المتكررة؟",
section_recurring:"تكرار الحدث",
button_recurring:"تعطيل",
button_recurring_open:"تمكين"
}
}

View File

@ -0,0 +1,41 @@
/*
@Traducido por Vicente Adria Bohigues - vicenteadria@hotmail.com
*/
scheduler.locale={
date:{
month_full:["Gener", "Febrer", "Març", "Abril", "Maig", "Juny", "Juliol", "Agost", "Setembre", "Octubre", "Novembre", "Desembre"],
month_short:["Gen", "Feb", "Mar", "Abr", "Mai", "Jun", "Jul", "Ago", "Set", "Oct", "Nov", "Des"],
day_full:["Diumenge", "Dilluns", "Dimarts", "Dimecres", "Dijous", "Divendres", "Dissabte"],
day_short:["Dg", "Dl", "Dm", "Dc", "Dj", "Dv", "Ds"]
},
labels:{
dhx_cal_today_button:"Hui",
day_tab:"Dia",
week_tab:"Setmana",
month_tab:"Mes",
new_event:"Nou esdeveniment",
icon_save:"Guardar",
icon_cancel:"Cancel·lar",
icon_details:"Detalls",
icon_edit:"Editar",
icon_delete:"Esborrar",
confirm_closing:"", //"Els seus canvis es perdràn, continuar ?"
confirm_deleting:"L'esdeveniment s'esborrarà definitivament, continuar ?",
section_description:"Descripció",
section_time:"Periode de temps",
full_day:"Tot el dia",
confirm_recurring:"¿Desitja modificar el conjunt d'esdeveniments repetits?",
section_recurring:"Repeteixca l'esdeveniment",
button_recurring:"Impedit",
button_recurring_open:"Permés",
/*agenda view extension*/
agenda_tab:"Agenda",
date:"Data",
description:"Descripció",
/*year view extension*/
year_tab:"Any"
}
}

View File

@ -0,0 +1,46 @@
/*
Translation by FreezeSoul
*/
scheduler.config.day_date="%M %d日 %D";
scheduler.config.default_date="%Y年 %M %d日";
scheduler.config.month_date="%Y年 %M";
scheduler.locale={
date: {
month_full: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"],
month_short: ["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"],
day_full: ["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六"],
day_short: ["日", "一", "二", "三", "四", "五", "六"]
},
labels: {
dhx_cal_today_button: "今天",
day_tab: "日",
week_tab: "周",
month_tab: "月",
new_event: "新建日程",
icon_save: "保存",
icon_cancel: "关闭",
icon_details: "详细",
icon_edit: "编辑",
icon_delete: "删除",
confirm_closing: "请确认是否撤销修改!", //Your changes will be lost, are your sure?
confirm_deleting: "是否删除日程?",
section_description: "描述",
section_time: "时间范围",
full_day: "整天",
confirm_recurring:"请确认是否将日程设为重复模式?",
section_recurring:"重复周期",
button_recurring:"禁用",
button_recurring_open:"启用",
/*agenda view extension*/
agenda_tab:"议程",
date:"日期",
description:"说明",
/*year view extension*/
year_tab:"今年"
}
};

View File

@ -0,0 +1,40 @@
scheduler.locale={
date:{
month_full:["Leden", "Únor", "Březen", "Duben", "Květen", "Červen", "Červenec", "Srpen", "Září", "Říjen", "Listopad", "Prosinec"],
month_short:["Led", "Ún", "Bře", "Dub", "Kvě", "Čer", "Čec", "Srp", "Září", "Říj", "List", "Pro"],
day_full:["Neděle", "Pondělí", "Úterý", "Středa", "Čtvrtek", "Pátek", "Sobota"],
day_short:["Ne", "Po", "Út", "St", "Čt", "Pá", "So"]
},
labels:{
dhx_cal_today_button:"Dnes",
day_tab:"Den",
week_tab:"Týden",
month_tab:"Měsíc",
new_event:"Nová událost",
icon_save:"Uložit",
icon_cancel:"Zpět",
icon_details:"Detail",
icon_edit:"Edituj",
icon_delete:"Smazat",
confirm_closing:"",//Vaše změny budou ztraceny, opravdu ?
confirm_deleting:"Událost bude trvale smazána, opravdu?",
section_description:"Poznámky",
section_time:"Doba platnosti",
/*recurring events*/
confirm_recurring:"Přejete si upravit celou řadu opakovaných událostí?",
section_recurring:"Opakování události",
button_recurring:"Vypnuto",
button_recurring_open:"Zapnuto",
/*agenda view extension*/
agenda_tab:"Program",
date:"Datum",
description:"Poznámka",
/*year view extension*/
year_tab:"Rok",
full_day:"Full day"
}
}

View File

@ -0,0 +1,39 @@
scheduler.locale={
date:{
month_full:[" Januar", " Februar", " März ", " April", " Mai", " Juni", " Juli", " August", " September ", " Oktober", " November ", " Dezember"],
month_short:["Jan", "Feb", "Mär", "Apr", "Mai", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dec"],
day_full:[ "Sonntag", "Montag", "Dienstag", " Mittwoch", " Donnerstag", "Freitag", "Samstag"],
day_short:["So", "Mo", "Di", "Mi", "Do", "Fr", "Sa"]
},
labels:{
dhx_cal_today_button: "Heute",
day_tab:"Tag",
week_tab:"Woche",
month_tab:"Monat",
new_event:"neuer Eintrag",
icon_save:"Speichern",
icon_cancel:"Annulieren",
icon_details:"Details",
icon_edit:"Ändern",
icon_delete:"Löschen",
confirm_closing:"",//"Ihre Veränderungen werden verloren sein, wollen Sie ergänzen? "
confirm_deleting:"Der Eintrag wird gelöscht",
section_description:"Beschreibung",
section_time:"Zeitspanne",
full_day:"Ganzer Tag",
confirm_recurring:"Wollen Sie alle Einträge bearbeiten (OK) oder nur diesen einzelnen Eintrag (Abbrechen)?",
section_recurring:"Wiederholung",
button_recurring:"Aus",
button_recurring_open:"An",
/*agenda view extension*/
agenda_tab:"Agenda",
date:"Datum",
description:"Beschreibung",
/*year view extension*/
year_tab:"Jahre"
}
}

View File

@ -0,0 +1,41 @@
/*
@Autor Manuel Fernandez Panzuela - www.mfernandez.es
*/
scheduler.locale={
date:{
month_full:["Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio", "Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre"],
month_short:["Ene", "Feb", "Mar", "Abr", "May", "Jun", "Jul", "Ago", "Sep", "Oct", "Nov", "Dic"],
day_full:["Domingo", "Lunes", "Martes", "Miércoles", "Jueves", "Viernes", "Sábado"],
day_short:["Dom", "Lun", "Mar", "Mie", "Jue", "Vie", "Sab"]
},
labels:{
dhx_cal_today_button:"Hoy",
day_tab:"Día",
week_tab:"Semana",
month_tab:"Mes",
new_event:"Nuevo evento",
icon_save:"Guardar",
icon_cancel:"Cancelar",
icon_details:"Detalles",
icon_edit:"Editar",
icon_delete:"Eliminar",
confirm_closing:"", //"Sus cambios se perderán, continuar ?"
confirm_deleting:"El evento se borrará definitivamente, continuar ?",
section_description:"Descripción",
section_time:"Periodo de tiempo",
full_day:"Todo el día",
confirm_recurring:"¿Desea modificar el conjunto de eventos repetidos?",
section_recurring:"Repita el evento",
button_recurring:"Impedido",
button_recurring_open:"Permitido",
/*agenda view extension*/
agenda_tab:"Dia",
date:"Fecha",
description:"Descripción",
/*year view extension*/
year_tab:"Año"
}
}

View File

@ -0,0 +1,40 @@
scheduler.locale={
date:{
month_full:["Tammikuu", "Helmikuu", "Maaliskuu", "Huhtikuu", "Toukokuu", "Kes&auml;kuu", "Hein&auml;kuu", "Elokuu", "Syyskuu", "Lokakuu", "Marraskuu", "Joulukuu"],
month_short:["Tam", "Hel", "Maa", "Huh", "Tou", "Kes", "Hei", "Elo", "Syy", "Lok", "Mar", "Jou"],
day_full:["Sunnuntai", "Maanantai", "Tiistai", "Keskiviikko", "Torstai", "Perjantai", "Lauantai"],
day_short:["Su", "Ma", "Ti", "Ke", "To", "Pe", "La"]
},
labels:{
dhx_cal_today_button:"Tänään",
day_tab:"Päivä",
week_tab:"Viikko",
month_tab:"Kuukausi",
new_event:"Uusi tapahtuma",
icon_save:"Tallenna",
icon_cancel:"Peru",
icon_details:"Tiedot",
icon_edit:"Muokkaa",
icon_delete:"Poista",
confirm_closing:"",//Your changes will be lost, are your sure ?
confirm_deleting:"Haluatko varmasti poistaa tapahtuman?",
section_description:"Kuvaus",
section_time:"Aikajakso",
full_day:"Koko päivä",
confirm_recurring:"Haluatko varmasti muokata toistuvan tapahtuman kaikkia jaksoja?",
section_recurring:"Toista tapahtuma",
button_recurring:"Ei k&auml;yt&ouml;ss&auml;",
button_recurring_open:"K&auml;yt&ouml;ss&auml;",
/*agenda view extension*/
agenda_tab:"Esityslista",
date:"Päivämäärä",
description:"Kuvaus",
/*year view extension*/
year_tab:"Vuoden"
}
}

Some files were not shown because too many files have changed in this diff Show More