"+
""+ // hdrformat will here
"";
ul.appendChild(li);
var that = this;
li.onclick = function(e) {
e = e||event;
if (e.type == "touchstart" && e.preventDefault != null) e.preventDefault();
var t = (e.target||e.srcElement);
// change month by clicking left-right arrows
if (t.className && t.className.indexOf("dhtmlxcalendar_month_arrow") === 0) {
that._hideSelector();
var ind = (t.parentNode.firstChild==t?-1:1);
var k0 = new Date(that._activeMonth);
that._drawMonth(new Date(that._activeMonth.getFullYear(), that._activeMonth.getMonth()+ind, 1, 0, 0, 0, 0));
that._evOnArrowClick([k0, new Date(that._activeMonth)]);
return;
}
// show month selector
if (t.className && t.className == "dhtmlxcalendar_month_label_month") {
e.cancelBubble = true;
that._showSelector("month", Math.round(t.offsetLeft+t.offsetWidth/2), t.offsetTop+t.offsetHeight+2, "selector_month", true);
return;
}
// show year selector
if (t.className && t.className == "dhtmlxcalendar_month_label_year") {
e.cancelBubble = true;
that._showSelector("year", Math.round(t.offsetLeft+t.offsetWidth/2), t.offsetTop+t.offsetHeight+2, "selector_year", true);
return;
}
// hide selector if it visible
that._hideSelector();
}
if (this.conf.touch == true) {
li.ontouchstart = li.onclick;
}
// build days names
this.contDays = document.createElement("DIV");
this.contDays.className = "dhtmlxcalendar_days_cont";
this.base.firstChild.appendChild(this.contDays);
this.setWeekStartDay = function(ind) {
// 1..7 = Mo-Su, also 0 = Su
if (ind == 0) ind = 7;
this._wStart = Math.min(Math.max((isNaN(ind)?1:ind),1),7);
this._drawDaysOfWeek();
}
this._drawDaysOfWeek = function() {
if (this.contDays.childNodes.length == 0) {
var ul = document.createElement("UL");
ul.className = "dhtmlxcalendar_line";
this.contDays.appendChild(ul);
} else {
var ul = this.contDays.firstChild;
}
var w = this._wStart;
var k = this.langData[this.lang].daysSNames;
k.push(String(this.langData[this.lang].daysSNames[0]).valueOf());
for (var q=0; q<8; q++) {
if (ul.childNodes[q] == null) {
var li = document.createElement("LI");
ul.appendChild(li);
} else {
var li = ul.childNodes[q];
}
if (q == 0) {
li.className = "dhtmlxcalendar_cell_wn";
li.innerHTML = ""+(this.langData[this.lang].weekname||"w")+"
";
} else {
li.className = "dhtmlxcalendar_cell"+(w>=6?" dhtmlxcalendar_day_weekday_cell":"")+(q==1?"_first":"");
li.innerHTML = k[w];
if (++w > 7) w = 1;
}
}
if (this._activeMonth != null) this._drawMonth(this._activeMonth);
}
this._wStart = this.langData[this.lang].weekstart;
this.setWeekStartDay(this._wStart);
// dates container
this.contDates = document.createElement("DIV");
this.contDates.className = "dhtmlxcalendar_dates_cont";
this.base.firstChild.appendChild(this.contDates);
this.contDates.onclick = function(e){
e = e||event;
var t = (e.target||e.srcElement);
if (t.parentNode != null && t.parentNode._date != null) t = t.parentNode;
if (t._date != null && !t._css_dis) {
var t1 = that._activeDate.getHours();
var t2 = that._activeDate.getMinutes();
var d0 = t._date;
// cjeck if allow to modify input
if (that.checkEvent("onBeforeChange")) {
if (!that.callEvent("onBeforeChange",[new Date(t._date.getFullYear(),t._date.getMonth(),t._date.getDate(),t1,t2)])) return;
}
if (that._activeDateCell != null) {
that._activeDateCell._css_date = false;
that._updateCellStyle(that._activeDateCell._q, that._activeDateCell._w);
}
// update month if day from prev/next month clicked
var refreshView = (that._activeDate.getFullYear()+"_"+that._activeDate.getMonth() != d0.getFullYear()+"_"+d0.getMonth());
that._nullDate = false;
that._activeDate = new Date(d0.getFullYear(),d0.getMonth(),d0.getDate(),t1,t2);
that._activeDateCell = t;
that._activeDateCell._css_date = true;
that._activeDateCell._css_hover = false;
that._updateCellStyle(that._activeDateCell._q, that._activeDateCell._w);
if (refreshView) that._drawMonth(that._activeDate);
// update date in input if any
that._updateInp();
// hide
if (!that._hasParent) {
if (e.type == "touchstart") {
window.setTimeout(function(){that._hide();},400);
} else {
that._hide();
}
}
//
that._evOnClick([new Date(that._activeDate.getTime())]);
that._doOnSelectorChange(true);
}
}
if (this.conf.touch == true) {
this.contDates.ontouchstart = this.contDates.onclick;
}
this.contDates.onmouseover = function(e) {
e = e||event;
var t = (e.target||e.srcElement);
if (t.parentNode != null && t.parentNode._date != null) t = t.parentNode;
if (t._date != null) { // && t != that._activeDateCell) { // skip hover for selected date
if (that._lastHover == t || t._css_hover) return;
t._css_hover = true;
that._updateCellStyle(t._q, t._w);
that._lastHover = t;
that._evOnMouseOver([new Date(t._date.getFullYear(),t._date.getMonth(),t._date.getDate(),0,0,0,0),e]);
t = null;
}
}
this.contDates.onmouseout = function(e) {
that._clearDayHover(e||event);
}
this._lastHover = null;
this._clearDayHover = function(ev) {
if (!this._lastHover) return;
this._lastHover._css_hover = false;
this._updateCellStyle(this._lastHover._q, this._lastHover._w);
if (ev != null) that._evOnMouseOut([new Date(this._lastHover._date.getFullYear(),this._lastHover._date.getMonth(),this._lastHover._date.getDate(),0,0,0,0),ev]);
this._lastHover = null;
}
// build cells
for (var q=0; q<6; q++) {
var ul = document.createElement("UL");
ul.className = "dhtmlxcalendar_line";
this.contDates.appendChild(ul);
for (var w=0; w<=7; w++) {
var li = document.createElement("LI");
if (w == 0) {
// week number
li.className = "dhtmlxcalendar_cell_wn";
} else {
li.className = "dhtmlxcalendar_cell";
}
ul.appendChild(li);
}
}
// timepicker
this.contTime = document.createElement("DIV");
this.contTime.className = "dhtmlxcalendar_time_cont";
this.contTime.style.display = "none";
this.base.firstChild.appendChild(this.contTime);
this.showTime = function() {
if (this.conf.time != true) {
this.conf.time = true;
this._adjustTimeCont();
}
}
this.hideTime = function() {
if (this.conf.time == true) {
this.conf.time = false;
this._adjustTimeCont();
}
}
this.showToday = function() {
if (this.conf.today != true) {
this.conf.today = true;
this._adjustTimeCont();
}
}
this.hideToday = function() {
if (this.conf.today == true) {
this.conf.today = false;
this._adjustTimeCont();
}
}
this._adjustTimeCont = function() {
var css = "";
if (this.conf.time == true) css += "_time";
if (this.conf.today == true) css += "_today";
if (css == "") {
this.contTime.style.display = "none";
} else {
this.contTime.className = "dhtmlxcalendar_time_cont dhtmlxcalendar_mode"+css;
this.contTime.style.display = "";
}
this._ifrSize();
}
this._adjustTimeCont();
var ul = document.createElement("UL");
ul.className = "dhtmlxcalendar_line";
this.contTime.appendChild(ul);
var li = document.createElement("LI");
li.className = "dhtmlxcalendar_cell dhtmlxcalendar_time_hdr";
li.innerHTML = ""+
":"+
""+this.langData[this.lang].clear+""+this.langData[this.lang].today+""; // added in 4.6
ul.appendChild(li);
li.onclick = function(e) {
e = e||event;
if (e.type == "touchstart" && e.preventDefault != null) e.preventDefault();
var t = (e.target||e.srcElement);
if (t.tagName != null && t.tagName.toLowerCase() == "span" && t._par == true && t.parentNode != null) {
t = t.parentNode;
}
// show hours selector
if (t.className && t.className == "dhtmlxcalendar_label_hours") {
e.cancelBubble = true;
var h = that.contMonth.offsetHeight+that.contDays.offsetHeight+that.contDates.offsetHeight+t.offsetTop;
that._showSelector("hours", Math.round(t.offsetLeft+t.offsetWidth/2), h-2, "selector_hours", true);
return;
}
// show minutes selector
if (t.className && t.className == "dhtmlxcalendar_label_minutes") {
e.cancelBubble = true;
if (that._minutesInterval == 1) {
var d = that.getFormatedDate("%i");
t.innerHTML = ""+d.charAt(0)+""+d.charAt(1);
t.firstChild._par = true;
that._selectorMode = 1; // select hour
}
var h = that.contMonth.offsetHeight+that.contDays.offsetHeight+that.contDates.offsetHeight+t.offsetTop;
that._showSelector("minutes", Math.round(t.offsetLeft+t.offsetWidth/2), h-2, "selector_minutes",true);
return;
}
// hide selector if it visible
that._hideSelector();
// today/clear buttons, added in 4.6
if (t.className && t.className == "dhtmlxcalendar_label_today") {
var d = new Date();
d = new Date(d.getFullYear(), d.getMonth(), d.getDate(), that._activeDate.getHours(), that._activeDate.getMinutes(), that._activeDate.getSeconds(), that._activeDate.getMilliseconds());
that.setDate(d);
that._updateInp();
that.callEvent("onButtonClick", [d]);
}
if (t.className && t.className == "dhtmlxcalendar_label_clear") {
that._nullDate = true;
that._drawMonth(new Date());
that._updateInp();
that.callEvent("onButtonClick", [null]);
}
}
if (this.conf.touch == true) {
li.ontouchstart = li.onclick;
}
this._activeMonth = null;
this._activeDate = new Date();
this._activeDateCell = null;
this.setDate = function(d) {
window.dhx4.temp_calendar = {tz:null};
this._nullDate = (typeof(d) == "undefined" || d === "" || !d);
if (!(d instanceof Date)) {
d = this._strToDate(String(d||""));
if (d == "Invalid Date") d = new Date(); else this.conf.tz = window.dhx4.temp_calendar.tz;
window.dhx4.temp_calendar = null;
}
if (this.conf.tz == null) this.conf.tz = window.dhx4.date2str(d,"%P");
var time = d.getTime();
// out of range
if (this._isOutOfRange(time)) return;
this._activeDate = new Date(time);
this._drawMonth(this._nullDate?new Date():this._activeDate);
this._updateVisibleHours();
this._updateVisibleMinutes();
}
this.getDate = function(formated) {
if (this._nullDate) return null;
var t = new Date(this._activeDate.getTime());
if (formated) {
window.dhx4.temp_calendar = {tz:this.conf.tz};
var d = this._dateToStr(t);
window.dhx4.temp_calendar = null;
return d;
}
return t;
}
this._drawMonth = function(d) {
if (!(d instanceof Date)) return;
if (isNaN(d.getFullYear())) d = new Date(this._activeMonth.getFullYear(), this._activeMonth.getMonth(), 1, 0, 0, 0, 0);
this._activeMonth = new Date(d.getFullYear(), d.getMonth(), 1, 0, 0, 0, 0);
this._activeDateCell = null;
var first = new Date(this._activeMonth.getTime());
var d0 = first.getDay();
var e0 = d0-this._wStart;
if (e0 < 0) e0 = e0+7;
first.setDate(first.getDate()-e0);
var mx = d.getMonth();
var dx = new Date(this._activeDate.getFullYear(), this._activeDate.getMonth(), this._activeDate.getDate(), 0, 0, 0, 0).getTime();
var i = 0;
for (var q=0; q<6; q++) {
var ws = this._wStart;
for (var w=0; w<=7; w++) {
if (w == 0) {
var wn = this.getWeekNumber(new Date(first.getFullYear(), first.getMonth(), first.getDate()+i, 0, 0, 0, 0));
// if active month set to jan and 1st jan belong to 1st week - display 1st week instead of 52/53
if (wn >= 52 && this.conf.ws_first == true && this._activeMonth.getMonth() == 0) {
var wn2 = this.getWeekNumber(new Date(first.getFullYear(), first.getMonth(), first.getDate()+i+7, 0, 0, 0, 0));
if (wn2 < wn && wn2 > 1) wn = 1;
} else if (wn > 52 && this._activeMonth.getMonth() == 11) {
var wn2 = this.getWeekNumber(new Date(first.getFullYear()+1, 0, 1));
if (wn2 == 1) wn = 1;
}
this.contDates.childNodes[q].childNodes[w].innerHTML = ""+wn+"
";
} else {
var d2 = new Date(first.getFullYear(), first.getMonth(), first.getDate()+i, 0, 0, 0, 0);
if (d2.getHours() != 0) {
var h = (d2.getHours()>12 ? 24-d2.getHours() : d2.getHours()); // yesturday/tomorrow while daylight saving
d2.setTime(d2.getTime() + 60*60*1000*h);
}
var day = d2.getDay();
var time = d2.getTime();
var label_css = "dhtmlxcalendar_label";
if (this._tipData[time] != null) {
if (this._tipData[time].usePopup && typeof(window.dhtmlXPopup) == "function") {
this.contDates.childNodes[q].childNodes[w].removeAttribute("title");
this._initTooltipPopup();
} else {
this.contDates.childNodes[q].childNodes[w].setAttribute("title", this._tipData[time].text);
}
if (this._tipData[time].showIcon) label_css += " dhtmlxcalendar_label_title";
} else {
this.contDates.childNodes[q].childNodes[w].removeAttribute("title");
}
this.contDates.childNodes[q].childNodes[w].innerHTML = ""+d2.getDate()+"
";
this.contDates.childNodes[q].childNodes[w]._date = new Date(time);
this.contDates.childNodes[q].childNodes[w]._q = q;
this.contDates.childNodes[q].childNodes[w]._w = w;
this.contDates.childNodes[q].childNodes[w]._css_month = (d2.getMonth()==mx);
this.contDates.childNodes[q].childNodes[w]._css_date = (!this._nullDate&&time==dx);
this.contDates.childNodes[q].childNodes[w]._css_weekend = (ws>=6);
this.contDates.childNodes[q].childNodes[w]._css_dis = this._isOutOfRange(time);
this.contDates.childNodes[q].childNodes[w]._css_holiday = (this._holidays[time] == true);
this._updateCellStyle(q, w);
if (time==dx) this._activeDateCell = this.contDates.childNodes[q].childNodes[w];
if (++ws > 7) ws = 1;
i++;
}
}
}
this.contMonth.firstChild.firstChild.childNodes[1].innerHTML = this._buildMonthHdr(d);
}
this._updateCellStyle = function(q, w) {
var r = this.contDates.childNodes[q].childNodes[w];
var s = "dhtmlxcalendar_cell dhtmlxcalendar_cell";
// this/another month
s += (r._css_month ? "_month" : "");
// selected date
s += (r._css_date ? "_date" : "");
// is weekend
s += (r._css_weekend ? "_weekend" : "");
// is holiday
s += (r._css_holiday ? "_holiday" : "");
// is cell disabled
s += (r._css_dis ? "_dis" : "");
// is cell hover (only if not disabled)
s += (r._css_hover && !r._css_dis ? "_hover" : "");
r.className = s;
r = null;
}
/* global selector obj */
this._minutesInterval = 5; // default
this._initSelector = function(type,css) {
if (!this._selCover) {
this._selCover = document.createElement("DIV");
this._selCover.className = "dhtmlxcalendar_selector_cover";
this.base.firstChild.appendChild(this._selCover);
}
if (!this._sel) {
this._sel = document.createElement("DIV");
this._sel.className = "dhtmlxcalendar_selector_obj";
this.base.firstChild.appendChild(this._sel);
this._sel.appendChild(document.createElement("TABLE"));
this._sel.firstChild.className = "dhtmlxcalendar_selector_table";
this._sel.firstChild.cellSpacing = 0;
this._sel.firstChild.cellPadding = 0;
this._sel.firstChild.border = 0;
this._sel.firstChild.appendChild(document.createElement("TBODY"));
this._sel.firstChild.firstChild.appendChild(document.createElement("TR"));
this._sel.firstChild.firstChild.firstChild.appendChild(document.createElement("TD"));
this._sel.firstChild.firstChild.firstChild.appendChild(document.createElement("TD"));
this._sel.firstChild.firstChild.firstChild.appendChild(document.createElement("TD"));
this._sel.firstChild.firstChild.firstChild.childNodes[0].className = "dhtmlxcalendar_selector_cell_left";
this._sel.firstChild.firstChild.firstChild.childNodes[1].className = "dhtmlxcalendar_selector_cell_middle";
this._sel.firstChild.firstChild.firstChild.childNodes[2].className = "dhtmlxcalendar_selector_cell_right";
this._sel.firstChild.firstChild.firstChild.childNodes[0].innerHTML = " ";
this._sel.firstChild.firstChild.firstChild.childNodes[2].innerHTML = " ";
this._sel.firstChild.firstChild.firstChild.childNodes[0].onmouseover = function(){
this.className = "dhtmlxcalendar_selector_cell_left dhtmlxcalendar_selector_cell_left_hover";
}
this._sel.firstChild.firstChild.firstChild.childNodes[0].onmouseout = function(){
this.className = "dhtmlxcalendar_selector_cell_left";
}
this._sel.firstChild.firstChild.firstChild.childNodes[2].onmouseover = function(){
this.className = "dhtmlxcalendar_selector_cell_right dhtmlxcalendar_selector_cell_right_hover";
}
this._sel.firstChild.firstChild.firstChild.childNodes[2].onmouseout = function(){
this.className = "dhtmlxcalendar_selector_cell_right";
}
this._sel.onmouseover = function(e) {
e = e||event;
var t = (e.target||e.srcElement);
if (t._cell === true) {
if (that._selHover != t) that._clearSelHover();
if (String(t.className).match(/^\s{0,}dhtmlxcalendar_selector_cell\s{0,}$/gi) !=null) {
t.className += " dhtmlxcalendar_selector_cell_hover";
that._selHover = t;
}
}
}
this._sel.onmouseout = function() {
that._clearSelHover();
}
this._sel.firstChild.firstChild.firstChild.childNodes[0].onclick = function(e){
e = e||event;
if (e.type == "touchstart" && e.preventDefault != null) e.preventDefault();
e.cancelBubble = true;
that._scrollYears(-1);
}
this._sel.firstChild.firstChild.firstChild.childNodes[2].onclick = function(e){
e = e||event;
if (e.type == "touchstart" && e.preventDefault != null) e.preventDefault();
e.cancelBubble = true;
that._scrollYears(1);
}
if (this.conf.touch == true) {
this._sel.firstChild.firstChild.firstChild.childNodes[0].ontouchstart = this._sel.firstChild.firstChild.firstChild.childNodes[0].onclick;
this._sel.firstChild.firstChild.firstChild.childNodes[2].ontouchstart = this._sel.firstChild.firstChild.firstChild.childNodes[2].onclick;
}
this._sel._ta = {};
this._selHover = null;
this._sel.appendChild(document.createElement("DIV"));
this._sel.lastChild.className = "dhtmlxcalendar_selector_obj_arrow";
}
// check if already inited
if (this._sel._ta[type] == true) return;
// init month
if (type == "month") {
this._msCells = {};
this.msCont = document.createElement("DIV");
this.msCont.className = "dhtmlxcalendar_area_"+css;
this._sel.firstChild.firstChild.firstChild.childNodes[1].appendChild(this.msCont);
var i = 0;
for (var q=0; q<4; q++) {
var ul = document.createElement("UL");
ul.className = "dhtmlxcalendar_selector_line";
this.msCont.appendChild(ul);
for (var w=0; w<3; w++) {
var li = document.createElement("LI");
li.innerHTML = this.langData[this.lang].monthesSNames[i];
li.className = "dhtmlxcalendar_selector_cell";
ul.appendChild(li);
li._month = i;
li._cell = true;
this._msCells[i++] = li;
}
}
this.msCont.onclick = function(e) {
e = e||event;
if (e.type == "touchstart" && e.preventDefault != null) e.preventDefault();
e.cancelBubble = true;
var t = (e.target||e.srcElement);
if (t._month != null) {
that._hideSelector();
that._updateActiveMonth();
that._drawMonth(new Date(that._activeMonth.getFullYear(), t._month, 1, 0, 0, 0, 0));
that._doOnSelectorChange();
}
}
if (this.conf.touch == true) {
this.msCont.ontouchstart = this.msCont.onclick;
}
}
// init year
if (type == "year") {
this._ysCells = {};
this.ysCont = document.createElement("DIV");
this.ysCont.className = "dhtmlxcalendar_area_"+css;
this._sel.firstChild.firstChild.firstChild.childNodes[1].appendChild(this.ysCont);
for (var q=0; q<4; q++) {
var ul = document.createElement("UL");
ul.className = "dhtmlxcalendar_selector_line";
this.ysCont.appendChild(ul);
for (var w=0; w<3; w++) {
var li = document.createElement("LI");
li.className = "dhtmlxcalendar_selector_cell";
li._cell = true;
ul.appendChild(li);
}
}
this.ysCont.onclick = function(e) {
e = e||event;
if (e.type == "touchstart" && e.preventDefault != null) e.preventDefault();
e.cancelBubble = true;
var t = (e.target||e.srcElement);
if (t._year != null) {
that._hideSelector();
that._drawMonth(new Date(t._year, that._activeMonth.getMonth(), 1, 0, 0, 0, 0));
that._doOnSelectorChange();
}
}
if (this.conf.touch == true) {
this.ysCont.ontouchstart = this.ysCont.onclick;
}
}
// init hours
if (type == "hours") {
this._hsCells = {};
this.hsCont = document.createElement("DIV");
this.hsCont.className = "dhtmlxcalendar_area_"+css;
this._sel.firstChild.firstChild.firstChild.childNodes[1].appendChild(this.hsCont);
var i = 0;
for (var q=0; q<4; q++) {
var ul = document.createElement("UL");
ul.className = "dhtmlxcalendar_selector_line";
this.hsCont.appendChild(ul);
for (var w=0; w<6; w++) {
var li = document.createElement("LI");
li.innerHTML = this._fixLength(i,2);
li.className = "dhtmlxcalendar_selector_cell";
ul.appendChild(li);
li._hours = i;
li._cell = true;
this._hsCells[i++] = li;
}
}
this.hsCont.onclick = function(e) {
e = e||event;
if (e.type == "touchstart" && e.preventDefault != null) e.preventDefault();
e.cancelBubble = true;
var t = (e.target||e.srcElement);
if (t._hours != null) {
that._hideSelector();
that._activeDate.setHours(t._hours);
that._updateActiveHours();
that._updateVisibleHours();
that._doOnSelectorChange();
//
that.callEvent("onTimeChange",[new Date(that._activeDate.getTime())]);
}
}
if (this.conf.touch == true) {
this.hsCont.ontouchstart = this.hsCont.onclick;
}
}
// init minutes
if (type == "minutes") {
// _minutesInterval = 5, def
var q1 = 4;
var w1 = 3;
var len = 2; // leading zero
if (this._minutesInterval == 1) {
if (this._selectorMode == 1) {
q1 = 2;
w1 = 3;
len = 1;
} else {
q1 = 2;
w1 = 5;
len = 1;
css += "5";
}
}
if (this._minutesInterval == 10) q1 = 2;
if (this._minutesInterval == 15) {
q1 = 1;
w1 = 4;
css += "4";
}
this._rsCells = {};
this.rsCont = document.createElement("DIV");
this.rsCont.className = "dhtmlxcalendar_area_"+css;
this._sel.firstChild.firstChild.firstChild.childNodes[1].appendChild(this.rsCont);
var i = 0;
for (var q=0; q1?this._fixLength(i,len):i);
li.className = "dhtmlxcalendar_selector_cell";
ul.appendChild(li);
li._minutes = i;
li._cell = true;
this._rsCells[i] = li;
i += this._minutesInterval;
}
}
this.rsCont.onclick = function(e) {
e = e||event;
if (e.type == "touchstart" && e.preventDefault != null) e.preventDefault();
e.cancelBubble = true;
var t = (e.target||e.srcElement);
if (t._minutes != null) {
if (that._minutesInterval == 1) {
var m = that.getFormatedDate("%i");
if (that._selectorMode == 1) {
m = t._minutes.toString()+m.charAt(1);
} else {
m = m.charAt(0)+t._minutes.toString();
}
that._activeDate.setMinutes(Number(m));
//
that.callEvent("onTimeChange",[new Date(that._activeDate.getTime())]);
that._hideSelector(); // will unload
if (that._selectorMode == 1) {
// show 2nd
that._updateVisibleMinutes(true);
that._selectorMode = 2;
that._showSelector("minutes", that._sel._x, that._sel._y, "selector_minutes", true);
that._updateActiveMinutes();
return;
} else {
that._selectorMode = 1;
}
} else {
that._hideSelector();
that._activeDate.setMinutes(t._minutes);
that._updateActiveMinutes();
//
that.callEvent("onTimeChange",[new Date(that._activeDate.getTime())]);
}
that._updateVisibleMinutes();
that._doOnSelectorChange();
}
}
if (this.conf.touch == true) {
this.rsCont.ontouchstart = this.rsCont.onclick;
}
}
// mark that selector of current type is inited
this._sel._ta[type] = true;
}
this._showSelector = function(type, x, y, css, autoHide) {
if (autoHide === true && this._sel != null && this._isSelectorVisible() && type == this._sel._t) {
this._hideSelector();
return;
}
if (this.conf.skin == "dhx_terrace") {
x += 12; // ul's margin
}
if (!this._sel || !this._sel._ta[type]) this._initSelector(type,css);
// minutes was visible, selector jumps to other type, remove red line
if (type != this._sel._t && this._sel._t == "minutes" && this._minutesInterval == 1) {
this.contTime.firstChild.firstChild.childNodes[3].innerHTML = this.getFormatedDate("%i");
}
this._sel._x = x;
this._sel._y = y;
// show selector cover
this._sel.style.visibility = "hidden";
this._sel.style.display = "";
this._selCover.style.width = this.base.offsetWidth-2+"px";
this._selCover.style.top = this.contMonth.offsetHeight+"px";
this._selCover.style.height = this.contDates.offsetHeight+this.contDays.offsetHeight-1+"px";
this._selCover.style.display = "";
// show selector
this._sel._t = type;
this._sel.className = "dhtmlxcalendar_selector_obj dhtmlxcalendar_"+css+(type=="hours"&&this.conf.today==true?"2":"");
// left/right table arrows
this._sel.childNodes[0].firstChild.firstChild.childNodes[0].style.display = this._sel.childNodes[0].firstChild.firstChild.childNodes[2].style.display = (type=="year"?"":"none");
// coords
var x0 = Math.max(0, x-Math.round(this._sel.offsetWidth/2));
if (x0+this._sel.offsetWidth > this._sel.parentNode.offsetWidth) {
x0 = this._sel.parentNode.offsetWidth - this._sel.offsetWidth;
}
this._sel.style.left = x0+"px";
if (type == "hours" || type == "minutes") {
this._sel.style.top = y-this._sel.offsetHeight+"px";
} else {
this._sel.style.top = y+"px";
}
// arrow width
this._sel.childNodes[1].style.width = this._sel.childNodes[0].offsetWidth+"px";
// final apply
this._sel.style.visibility = "visible";
// callbacks
this._doOnSelectorShow(type);
}
this._doOnSelectorShow = function(type) {
if (type == "month") this._updateActiveMonth();
if (type == "year") this._updateYearsList(this._activeMonth);
if (type == "hours") this._updateActiveHours();
if (type == "minutes") this._updateActiveMinutes();
}
this._hideSelector = function(selMode) {
if (!this._sel) return;
this._sel.style.display = "none";
this._sel.style.visible = "hidden";
this._selCover.style.display = "none";
//
if (this._sel._t == "minutes" && this._minutesInterval == 1) {
this.contTime.firstChild.firstChild.childNodes[3].innerHTML = this.getFormatedDate("%i");
this._unloadSelector("minutes");
}
}
this._isSelectorVisible = function() {
if (!this._sel) return false;
return (this._sel.style.display != "none");
}
this._doOnSelectorChange = function(state) {
this.callEvent("onChange",[new Date(this._activeMonth.getFullYear(), this._activeMonth.getMonth(), this._activeDate.getDate(), this._activeDate.getHours(), this._activeDate.getMinutes(), this._activeDate.getSeconds()),state===true]);
}
this._clearSelHover = function() {
if (!this._selHover) return;
this._selHover.className = String(this._selHover.className.replace(/dhtmlxcalendar_selector_cell_hover/gi,""));
this._selHover = null;
}
this._unloadSelector = function(type) {
if (!this._sel) return;
if (!this._sel._ta[type]) return;
// month selector
if (type == "month") {
this.msCont.onclick = this.msCont.ontouchstart = null;
this._msActive = null;
// li
for (var a in this._msCells) {
this._msCells[a]._cell = null;
this._msCells[a]._month = null;
this._msCells[a].parentNode.removeChild(this._msCells[a]);
this._msCells[a] = null;
}
this._msCells = null;
// ul
while (this.msCont.childNodes.length > 0) this.msCont.removeChild(this.msCont.lastChild);
// div
this.msCont.parentNode.removeChild(this.msCont);
this.msCont = null;
}
// years selector
if (type == "year") {
this.ysCont.onclick = this.ysCont.ontouchstart = null;
// li
for (var a in this._ysCells) {
this._ysCells[a]._cell = null;
this._ysCells[a]._year = null;
this._ysCells[a].parentNode.removeChild(this._ysCells[a]);
this._ysCells[a] = null;
}
this._ysCells = null;
// ul
while (this.ysCont.childNodes.length > 0) this.ysCont.removeChild(this.ysCont.lastChild);
// div
this.ysCont.parentNode.removeChild(this.ysCont);
this.ysCont = null;
}
// hours selector
if (type == "hours") {
this.hsCont.onclick = this.hsCont.ontouchstart = null;
this._hsActive = null;
// li
for (var a in this._hsCells) {
this._hsCells[a]._cell = null;
this._hsCells[a]._hours = null;
this._hsCells[a].parentNode.removeChild(this._hsCells[a]);
this._hsCells[a] = null;
}
this._hsCells = null;
// ul
while (this.hsCont.childNodes.length > 0) this.hsCont.removeChild(this.hsCont.lastChild);
// div
this.hsCont.parentNode.removeChild(this.hsCont);
this.hsCont = null;
}
// minutes selector
if (type == "minutes") {
this.rsCont.onclick = this.rsCont.ontouchstart = null;
this._rsActive = null;
// li
for (var a in this._rsCells) {
this._rsCells[a]._cell = null;
this._rsCells[a]._minutes = null;
this._rsCells[a].parentNode.removeChild(this._rsCells[a]);
this._rsCells[a] = null;
}
this._rsCells = null;
// ul
while (this.rsCont.childNodes.length > 0) this.rsCont.removeChild(this.rsCont.lastChild);
// div
this.rsCont.parentNode.removeChild(this.rsCont);
this.rsCont = null;
}
this._sel._ta[type] = null;
}
this.setMinutesInterval = function(d) {
if (!(d == 1 || d == 5 || d == 10 || d == 15)) return;
this._minutesInterval = d;
this._unloadSelector("minutes");
}
/* month selector */
this._updateActiveMonth = function() {
if (typeof(this._msActive) != "undefined" && typeof(this._msCells[this._msActive]) != "undefined") this._msCells[this._msActive].className = "dhtmlxcalendar_selector_cell";
this._msActive = this._activeMonth.getMonth();
this._msCells[this._msActive].className = "dhtmlxcalendar_selector_cell dhtmlxcalendar_selector_cell_active";
}
/* year selector */
this._updateActiveYear = function() {
var i = this._activeMonth.getFullYear();
if (this._ysCells[i]) this._ysCells[i].className = "dhtmlxcalendar_selector_cell dhtmlxcalendar_selector_cell_active";
}
this._updateYearsList = function(d) {
for (var a in this._ysCells) {
this._ysCells[a] = null;
delete this._ysCells[a];
}
//
var i = 12*Math.floor(d.getFullYear()/12);
for (var q=0; q<4; q++) {
for (var w=0; w<3; w++) {
this.ysCont.childNodes[q].childNodes[w].innerHTML = i;
this.ysCont.childNodes[q].childNodes[w]._year = i;
this.ysCont.childNodes[q].childNodes[w].className = "dhtmlxcalendar_selector_cell";
this._ysCells[i++] = this.ysCont.childNodes[q].childNodes[w];
}
}
this._updateActiveYear();
}
this._scrollYears = function(i) {
var y = (i<0?this.ysCont.firstChild.firstChild._year:this.ysCont.lastChild.lastChild._year)+i;
var d = new Date(y, this._activeMonth.getMonth(), 1, 0, 0, 0, 0);
this._updateYearsList(d);
}
/* hours selector */
// update hours in selector
this._updateActiveHours = function() {
if (typeof(this._hsActive) != "undefined" && typeof(this._hsCells[this._hsActive]) != "undefined") this._hsCells[this._hsActive].className = "dhtmlxcalendar_selector_cell";
this._hsActive = this._activeDate.getHours();
this._hsCells[this._hsActive].className = "dhtmlxcalendar_selector_cell dhtmlxcalendar_selector_cell_active";
}
// update hours in calendar
this._updateVisibleHours = function() {
this.contTime.firstChild.firstChild.childNodes[1].innerHTML = this._fixLength(this._activeDate.getHours(),2);
}
/* minutes selector */
// update minutes in selector
this._updateActiveMinutes = function() {
if (this._rsActive != null && typeof(this._rsActive) != "undefined" && typeof(this._rsCells[this._rsActive]) != "undefined") this._rsCells[this._rsActive].className = "dhtmlxcalendar_selector_cell";
if (this._minutesInterval == 1) {
this._rsActive = (this.getFormatedDate("%i").toString()).charAt(this._selectorMode==1?0:1);
} else {
this._rsActive = this._activeDate.getMinutes();
}
if (typeof(this._rsCells[this._rsActive]) != "undefined") this._rsCells[this._rsActive].className = "dhtmlxcalendar_selector_cell dhtmlxcalendar_selector_cell_active";
}
// update minutes in calendar
this._updateVisibleMinutes = function(h) {
var t = this._fixLength(this._activeDate.getMinutes(),2).toString();
if (h == true) t = t.charAt(0)+""+t.charAt(1)+"";
this.contTime.firstChild.firstChild.childNodes[3].innerHTML = t;
if (h == true) this.contTime.firstChild.firstChild.childNodes[3].lastChild._par = true;
}
/* some common functionality */
this._fixLength = function(t, r) {
while (String(t).length < r) t = "0"+String(t);
return t;
}
this._dateFormat = "";
this._dateFormatRE = null;
this.setDateFormat = function(format) {
// check value in inputs
// for 1st call on init strTodate not defined
var upd = {};
if (this._strToDate != null) {
for (var a in this.i) {
if (this.i[a].input != null && this.i[a].input.value.length > 0) {
var d = this._strToDate(this.i[a].input.value, this._dateFormat||this.langData[this.lang].dateformat||"%Y-%m-%d");
if (d instanceof Date) upd[a] = d;
}
}
}
this._dateFormat = format;
var k = String(this._dateFormat).replace(/%[a-zA-Z]+/g,function(t){
var t2 = t.replace(/%/,"");
switch (t2) {
case "n": case "h": case "j": case "g": case "G": return "\\d{1,2}";
case "m": case "d": case "H": case "i": case "s": case "y": return "\\d{2}";
case "Y": return "\\d{4}";
case "M": return "("+that.langData[that.lang].monthesSNames.join("|").toLowerCase()+"){1,}";
case "F": return "("+that.langData[that.lang].monthesFNames.join("|").toLowerCase()+"){1,}";
case "D": return "[a-z]{2}";
case "a": case "A": return "AM|PM";
case "u": return "\\d{1,6}";
case "P": return "[\\+\\-]\\d{1,2}\\:\\d{1,2}";
}
return t;
});
this._dateFormatRE = new RegExp(k,"i");
// update dates in inputs
for (var a in upd) {
this.i[a].input.value = this._dateToStr(upd[a]);
}
upd = null;
}
this.setDateFormat(this.langData[this.lang].dateformat||"%Y-%m-%d");
this._updateDateStr = function(str) {
var r;
if (!str)
r = new Date();
else {
// check if valid str
if (!this._dateFormatRE || !str.match(this._dateFormatRE)) return;
// input was not updated
if (str == this.getFormatedDate()) return;
r = this._strToDate(str);
}
if (!(r instanceof Date)) return;
// cjeck if allow to modify input
if (this.checkEvent("onBeforeChange")) {
if (!this.callEvent("onBeforeChange",[new Date(r.getFullYear(),r.getMonth(),r.getDate(),r.getHours(),r.getMinutes(),r.getSeconds())])) {
// revert value
this._updateInp();
return;
}
}
this._nullDate = false;
this._activeDate = r;
this._drawMonth(this._nullDate?new Date():this._activeDate);
this._updateVisibleMinutes();
this._updateVisibleHours();
if (this._sel && this._isSelectorVisible()) this._doOnSelectorShow(this._sel._t);
this._doOnSelectorChange(true);
}
this.showMonth = function(d) {
if (typeof(d) == "string") d = this._strToDate(d);
if (!(d instanceof Date)) return;
this._drawMonth(d);
}
this.setFormatedDate = function(format, str, a, return_only) {
var date = this._strToDate(str, format);
if (return_only) return date;
this.setDate(date);
}
this.getFormatedDate = function(format, date){
if (!(date && date instanceof Date)){
if (this._nullDate) return "";
date = new Date(this._activeDate);
}
return this._dateToStr(date, format);
}
/* week numbers */
this.getWeekNumber = function(date) {
if (typeof(date) == "string") date = this._strToDate(date);
if (!(date instanceof Date)) return "Invalid Date";
var nday = date.getDay();
if (nday === 0)
nday = 7;
var first_thursday = new Date(date.valueOf());
first_thursday.setDate(date.getDate() + (4 - nday));
var year_number = first_thursday.getFullYear();
var ordinal_date = Math.round( (first_thursday.getTime() - new Date(year_number, 0, 1).getTime()) / 86400000);
return 1 + Math.floor( ordinal_date / 7);
}
this.showWeekNumbers = function() {
this.base.firstChild.className = "dhtmlxcalendar_wn";
}
this.hideWeekNumbers = function() {
this.base.firstChild.className = "";
}
/* show/hide calendar */
// public show/hide
this.show = function(id) {
// if id not set - try show in container
if (!id && this._hasParent) {
this._show();
return;
}
// show by real input id, added in 5.0
if (typeof(id) == "string") {
var i = document.getElementById(id);
if (i != null && typeof(i._dhtmlxcalendar_uid) != "undefined" && this.i[i._dhtmlxcalendar_uid] != null) {
this._show(i._dhtmlxcalendar_uid);
return;
}
}
// if input id not specified show near first found
// if nothing found - do not show
if (typeof(id) == "object" && typeof(id._dhtmlxcalendar_uid) != "undefined" && this.i[id._dhtmlxcalendar_uid] == id) {
this._show(id._dhtmlxcalendar_uid);
return;
}
if (typeof(id) == "undefined") { for (var a in this.i) if (!id) id = a; }
if (!id) return;
this._show(id);
}
this.hide = function() {
if (this._isVisible()) this._hide();
}
this.isVisible = function() {
return this._isVisible();
}
// private show/hide
this._activeInp = null;
this.pos = "bottom";
this.setPosition = function(x, y) {
this._px = null;
this._py = null;
if (x == "right" || x == "bottom") {
this.pos = x;
} else {
this.pos = "int";
if (typeof(x) != "undefined" && !isNaN(x)) {
this.base.style.left = x+"px";
this._px = x;
}
if (typeof(y) != "undefined" && !isNaN(y)) {
this.base.style.top = y+"px";
this._py = y;
}
this._ifrSize();
}
}
this._show = function(inpId, autoHide) {
if (autoHide === true && this._activeInp == inpId && this._isVisible()) {
this._hide();
return;
}
this.base.style.visibility = "hidden";
this.base.style.display = "";
if (!inpId) {
if (this._px != null && this._py != null) {
this.base.style.left = this._px+"px";
this.base.style.top = this._py+"px";
} else {
this.base.style.left = "0px";
this.base.style.top = "0px";
}
} else {
if (this.base.className.indexOf("dhtmlxcalendar_in_input") == -1) this.base.className += " dhtmlxcalendar_in_input";
var i = (this.i[inpId].input||this.i[inpId].button);
var dim = window.dhx4.screenDim();
var inp = {top: window.dhx4.absTop(i), left: window.dhx4.absLeft(i)};
if (this.pos == "right") {
this.base.style.left = inp.left+i.offsetWidth+"px";
this.base.style.top = Math.min(inp.top, dim.bottom-this.base.offsetHeight)+"px";
} else if (this.pos == "bottom") {
var y0 = inp.top+i.offsetHeight+1;
if (y0+this.base.offsetHeight > dim.bottom) {
var ny0 = inp.top-this.base.offsetHeight;
if (ny0 >= -20) y0 = ny0;
}
// checi overflow from right side
var x = inp.left;
if (x + this.base.offsetWidth > dim.right) x = Math.max(0, inp.left+i.offsetWidth-this.base.offsetWidth);
//
this.base.style.left = x+"px";
this.base.style.top = y0+"px";
} else {
this.base.style.left = (this._px||0)+"px";
this.base.style.top = (this._py||0)+"px";
}
this._activeInp = inpId;
i = null;
}
this._hideSelector();
this.base.style.visibility = "visible";
this.base.style.zIndex = window.dhx4.zim.reserve(this.conf.zi);
this._ifrSize();
if (this._ifr) this._ifr.style.display = "";
this.callEvent("onShow",[]);
}
this._hide = function() {
if (this._lastHover != null) this._clearDayHover();
this._hideSelector();
this.base.style.display = "none";
window.dhx4.zim.clear(this.conf.zi);
if (this.base.className.indexOf("dhtmlxcalendar_in_input") >= 0) this.base.className = this.base.className.replace(/\s{0,}dhtmlxcalendar_in_input/gi, "");
this._activeInp = null;
if (this._ifr) this._ifr.style.display = "none";
this.callEvent("onHide",[]);
}
this._isVisible = function() {
return (this.base.style.display!="none");
}
this._rangeActive = false;
this._rangeFrom = null;
this._rangeTo = null;
this._rangeSet = {};
this.setInsensitiveDays = function(d) {
// !works in append mode
var t = this._extractDates(d);
for (var q=0; qthis._rangeTo)) return true;
if (this._rangeType == "out" && (time>=this._rangeFrom && time<=this._rangeTo)) return true;
if (this._rangeType == "from" && timethis._rangeTo) return true;
}
var t0 = new Date(time);
if (this._rangeWeek) {
if (this._rangeWeekData[t0.getDay()] === true) return true;
}
if (this._rangeMonth) {
if (this._rangeMonthData[t0.getDate()] === true) return true;
}
if (this._rangeYear) {
if (this._rangeYearData[t0.getMonth()+"_"+t0.getDate()] === true) return true;
}
return false;
}
this.clearSensitiveRange = function() {
this._clearRange();
this._drawMonth(this._activeMonth);
}
this.setSensitiveRange = function(from, to, ins) {
var f = false;
// set range
if (from != null && to != null) {
if (!(from instanceof Date)) from = this._strToDate(from);
if (!(to instanceof Date)) to = this._strToDate(to);
if (from.getTime() > to.getTime()) return;
this._rangeFrom = new Date(from.getFullYear(),from.getMonth(),from.getDate(),0,0,0,0).getTime();
this._rangeTo = new Date(to.getFullYear(),to.getMonth(),to.getDate(),0,0,0,0).getTime();
this._rangeActive = true;
this._rangeType = "in";
f = true;
}
// set range "from date"
if (!f && from != null && to == null) {
if (!(from instanceof Date)) from = this._strToDate(from);
this._rangeFrom = new Date(from.getFullYear(),from.getMonth(),from.getDate(),0,0,0,0).getTime();
this._rangeTo = null;
if (ins === true) this._rangeFrom++;
this._rangeActive = true;
this._rangeType = "from";
f = true;
}
// set range "to date"
if (!f && from == null && to != null) {
if (!(to instanceof Date)) to = this._strToDate(to);
this._rangeFrom = null;
this._rangeTo = new Date(to.getFullYear(),to.getMonth(),to.getDate(),0,0,0,0).getTime();
if (ins === true) this._rangeTo--;
this._rangeActive = true;
this._rangeType = "to";
f = true;
}
if (f) this._drawMonth(this._activeMonth);
}
this.setInsensitiveRange = function(from, to) {
if (from != null && to != null) {
if (!(from instanceof Date)) from = this._strToDate(from);
if (!(to instanceof Date)) to = this._strToDate(to);
if (from.getTime() > to.getTime()) return;
this._rangeFrom = new Date(from.getFullYear(),from.getMonth(),from.getDate(),0,0,0,0).getTime();
this._rangeTo = new Date(to.getFullYear(),to.getMonth(),to.getDate(),0,0,0,0).getTime();
this._rangeActive = true;
this._rangeType = "out";
this._drawMonth(this._activeMonth);
return;
}
if (from != null && to == null) {
this.setSensitiveRange(null, from, true);
return;
}
if (from == null && to != null) {
this.setSensitiveRange(to, null, true);
return;
}
}
//
this.disableDays = function(mode, d) {
if (mode == "week") {
// !! works in replace mode
if (typeof(d) != "object" && typeof(d.length) == "undefined") d = [d];
if (!this._rangeWeekData) this._rangeWeekData = {};
for (var a in this._rangeWeekData) {
this._rangeWeekData[a] = false;
delete this._rangeWeekData[a];
}
for (var q=0; q 0) this.contMonth.firstChild.firstChild.removeChild(this.contMonth.firstChild.firstChild.lastChild);
// li
this.contMonth.firstChild.removeChild(this.contMonth.firstChild.firstChild);
// ul
this.contMonth.removeChild(this.contMonth.firstChild);
// div
this.contMonth.parentNode.removeChild(this.contMonth);
this.contMonth = null;
/* days */
// li
while (this.contDays.firstChild.childNodes.length > 0) this.contDays.firstChild.removeChild(this.contDays.firstChild.lastChild);
// ul
this.contDays.removeChild(this.contDays.firstChild);
// div
this.contDays.parentNode.removeChild(this.contDays);
this.contDays = null;
/* dates */
this.contDates.onclick = null;
this.contDates.ontouchstart = null;
this.contDates.onmouseover = null;
this.contDates.onmouseout = null;
while (this.contDates.childNodes.length > 0) {
while (this.contDates.lastChild.childNodes.length > 0) {
// li
this.contDates.lastChild.lastChild._css_date = null;
this.contDates.lastChild.lastChild._css_month = null;
this.contDates.lastChild.lastChild._css_weekend = null;
this.contDates.lastChild.lastChild._css_hover = null;
this.contDates.lastChild.lastChild._date = null;
this.contDates.lastChild.lastChild._q = null;
this.contDates.lastChild.lastChild._w = null;
this.contDates.lastChild.removeChild(this.contDates.lastChild.lastChild);
}
// ul
this.contDates.removeChild(this.contDates.lastChild);
}
// div
this.contDates.parentNode.removeChild(this.contDates);
this.contDates = null;
/* time */
this.contTime.firstChild.firstChild.onclick = null;
this.contTime.firstChild.firstChild.ontouchstart = null;
// labels
while (this.contTime.firstChild.firstChild.childNodes.length > 0) this.contTime.firstChild.firstChild.removeChild(this.contTime.firstChild.firstChild.lastChild);
// li
this.contTime.firstChild.removeChild(this.contTime.firstChild.firstChild);
// ul
this.contTime.removeChild(this.contTime.firstChild);
// div
this.contTime.parentNode.removeChild(this.contTime);
this.contTime = null;
this._lastHover = null;
/* selector */
this._unloadSelector("month");
this._unloadSelector("year");
this._unloadSelector("hours");
this._unloadSelector("minutes");
// selector cover
if (this._selCover) {
this._selCover.parentNode.removeChild(this._selCover);
this._selCover = null;
}
// selector object
if (this._sel) {
for (var a in this._sel._ta) this._sel._ta[a] = null;
this._sel._ta = null;
this._sel._t = null;
this._sel.onmouseover = null;
this._sel.onmouseout = null;
// td
while (this._sel.firstChild.firstChild.firstChild.childNodes.length > 0) {
this._sel.firstChild.firstChild.firstChild.lastChild.onclick = null;
this._sel.firstChild.firstChild.firstChild.lastChild.onmouseover = null;
this._sel.firstChild.firstChild.firstChild.lastChild.onmouseout = null;
this._sel.firstChild.firstChild.firstChild.removeChild(this._sel.firstChild.firstChild.firstChild.lastChild);
}
// tr
this._sel.firstChild.firstChild.removeChild(this._sel.firstChild.firstChild.firstChild);
// tbody
this._sel.firstChild.removeChild(this._sel.firstChild.firstChild);
// table and arrow div
while (this._sel.childNodes.length > 0) this._sel.removeChild(this._sel.lastChild);
// object
this._sel.parentNode.removeChild(this._sel);
this._sel = null;
}
/* base */
this.base.onclick = null;
this.base.onmousedown = null;
this.base.ontouchstart = null;
this.base.onmouseout = null;
this.base.parentNode.removeChild(this.base);
this.base = null;
/* methods */
this._clearDayHover = null;
this._clearSelHover = null;
this._doOnSelectorChange = null;
this._doOnSelectorShow = null;
this._drawMonth = null;
this._fixLength = null;
this._ifrSize = null;
this._hide = null;
this._hideSelector = null;
this._initSelector = null;
this._isSelectorVisible = null;
this._isVisible = null;
this._scrollYears = null;
this._show = null;
this._showSelector = null;
this._strToDate = null;
this._updateActiveHours = null;
this._updateActiveMinutes = null;
this._updateActiveMonth = null;
this._updateActiveYear = null;
this._updateCellStyle = null;
this._updateDateStr = null;
this._updateVisibleHours = null;
this._updateVisibleMinutes = null;
this._updateYearsList = null;
this.enableIframe = null;
this.hide = null;
this.hideTime = null;
this.setDate = null;
this.setDateFormat = null;
this.setYearsRange = null;
this.show = null;
this.showTime = null;
this.unload = null;
/* popup */
if (this._tipPopup != null) {
this._tipPopup.unload();
this._tipPopup = null;
}
for (var a in this) delete this[a];
a = that = null;
}
// set init date
this.setDate(this._activeDate);
return this;
};
dhtmlXCalendarObject.prototype.lang = "en";
dhtmlXCalendarObject.prototype.langData = {
"en": {
dateformat: "%Y-%m-%d",
hdrformat: "%F %Y",
monthesFNames: ["January","February","March","April","May","June","July","August","September","October","November","December"],
monthesSNames: ["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],
daysFNames: ["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],
daysSNames: ["Su","Mo","Tu","We","Th","Fr","Sa"],
weekstart: 1,
weekname: "w",
today: "Today",
clear: "Clear"
}
};
dhtmlXCalendarObject.prototype._buildMonthHdr = function(val) {
var that = this;
var z = function(t) {
return (String(t).length==1?"0"+String(t):t);
}
var w = function(type, str) {
return ""+str+"";
}
var format = String(this.langData[this.lang].hdrformat||("%F %Y")).replace(/%[a-z]/gi, function(t){
switch (t) {
case "%m": return w("month", z(val.getMonth()+1));
case "%n": return w("month", val.getMonth()+1);
case "%M": return w("month", that.langData[that.lang].monthesSNames[val.getMonth()]);
case "%F": return w("month", that.langData[that.lang].monthesFNames[val.getMonth()]);
case "%y": return w("year", z(val.getYear()%100));
case "%Y": return w("year", val.getFullYear());
case "%%": return "%";
default: return t;
}
});
that = z = w = null;
return format;
};
dhtmlXCalendarObject.prototype.enableIframe = function(mode) {
if (mode == true) {
if (!this._ifr) {
this._ifr = document.createElement("IFRAME");
this._ifr.frameBorder = 0;
this._ifr.border = 0;
this._ifr.setAttribute("src","javascript:false;");
this._ifr.className = "dhtmlxcalendar_ifr";
this._ifr.onload = function(){
this.onload = null;
this.contentWindow.document.open("text/html", "replace");
this.contentWindow.document.write("");
}
this.base.parentNode.insertBefore(this._ifr, this.base);
this._ifrSize();
}
} else {
if (this._ifr) {
this._ifr.parentNode.removeChild(this._ifr);
this._ifr = null;
}
}
};
dhtmlXCalendarObject.prototype._ifrSize = function() {
if (this._ifr) {
this._ifr.style.left = this.base.style.left;
this._ifr.style.top = this.base.style.top;
this._ifr.style.width = this.base.offsetWidth+"px";
this._ifr.style.height = this.base.offsetHeight+"px";
}
};
dhtmlxCalendarObject = dhtmlXCalendarObject;
dhtmlXCalendarObject.prototype._dateStrings = function() {
var k = this.langData[this.lang];
return {monthFullName: k.monthesFNames, monthShortName: k.monthesSNames, dayFullName: k.daysFNames, dayShortName: k.daysSNames};
};
dhtmlXCalendarObject.prototype._strToDate = function(val, format) {
return window.dhx4.str2date(val, format||this._dateFormat, this._dateStrings());
};
dhtmlXCalendarObject.prototype._dateToStr = function(val, format) {
return window.dhx4.date2str(val, format||this._dateFormat, this._dateStrings());
};