Rev 1372 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
/*Copyright (c) 2004-2006, The Dojo FoundationAll Rights Reserved.Licensed under the Academic Free License version 2.1 or above OR themodified BSD license. For more information on Dojo licensing, see:http://dojotoolkit.org/community/licensing.shtml*/dojo.provide("dojo.widget.DatePicker");dojo.require("dojo.date.common");dojo.require("dojo.date.format");dojo.require("dojo.date.serialize");dojo.require("dojo.widget.*");dojo.require("dojo.widget.HtmlWidget");dojo.require("dojo.event.*");dojo.require("dojo.dom");dojo.require("dojo.html.style");dojo.widget.defineWidget("dojo.widget.DatePicker", dojo.widget.HtmlWidget, {value:"", name:"", displayWeeks:6, adjustWeeks:false, startDate:"1492-10-12", endDate:"2941-10-12", weekStartsOn:"", staticDisplay:false, dayWidth:"narrow", classNames:{previous:"previousMonth", disabledPrevious:"previousMonthDisabled", current:"currentMonth", disabledCurrent:"currentMonthDisabled", next:"nextMonth", disabledNext:"nextMonthDisabled", currentDate:"currentDate", selectedDate:"selectedDate"}, templateString:"<div class=\"datePickerContainer\" dojoAttachPoint=\"datePickerContainerNode\">\n\t<table cellspacing=\"0\" cellpadding=\"0\" class=\"calendarContainer\">\n\t\t<thead>\n\t\t\t<tr>\n\t\t\t\t<td class=\"monthWrapper\" valign=\"top\">\n\t\t\t\t\t<table class=\"monthContainer\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n\t\t\t\t\t\t<tr>\n\t\t\t\t\t\t\t<td class=\"monthCurve monthCurveTL\" valign=\"top\"></td>\n\t\t\t\t\t\t\t<td class=\"monthLabelContainer\" valign=\"top\">\n\t\t\t\t\t\t\t\t<span dojoAttachPoint=\"increaseWeekNode\" \n\t\t\t\t\t\t\t\t\tdojoAttachEvent=\"onClick: onIncrementWeek;\" \n\t\t\t\t\t\t\t\t\tclass=\"incrementControl increase\">\n\t\t\t\t\t\t\t\t\t<img src=\"${dojoWidgetModuleUri}templates/images/incrementMonth.png\" \n\t\t\t\t\t\t\t\t\talt=\"↓\" style=\"width:7px;height:5px;\" />\n\t\t\t\t\t\t\t\t</span>\n\t\t\t\t\t\t\t\t<span \n\t\t\t\t\t\t\t\t\tdojoAttachPoint=\"increaseMonthNode\" \n\t\t\t\t\t\t\t\t\tdojoAttachEvent=\"onClick: onIncrementMonth;\" class=\"incrementControl increase\">\n\t\t\t\t\t\t\t\t\t<img src=\"${dojoWidgetModuleUri}templates/images/incrementMonth.png\" \n\t\t\t\t\t\t\t\t\t\talt=\"↓\" dojoAttachPoint=\"incrementMonthImageNode\">\n\t\t\t\t\t\t\t\t</span>\n\t\t\t\t\t\t\t\t<span \n\t\t\t\t\t\t\t\t\tdojoAttachPoint=\"decreaseWeekNode\" \n\t\t\t\t\t\t\t\t\tdojoAttachEvent=\"onClick: onIncrementWeek;\" \n\t\t\t\t\t\t\t\t\tclass=\"incrementControl decrease\">\n\t\t\t\t\t\t\t\t\t<img src=\"${dojoWidgetModuleUri}templates/images/decrementMonth.png\" alt=\"↑\" style=\"width:7px;height:5px;\" />\n\t\t\t\t\t\t\t\t</span>\n\t\t\t\t\t\t\t\t<span \n\t\t\t\t\t\t\t\t\tdojoAttachPoint=\"decreaseMonthNode\" \n\t\t\t\t\t\t\t\t\tdojoAttachEvent=\"onClick: onIncrementMonth;\" class=\"incrementControl decrease\">\n\t\t\t\t\t\t\t\t\t<img src=\"${dojoWidgetModuleUri}templates/images/decrementMonth.png\" \n\t\t\t\t\t\t\t\t\t\talt=\"↑\" dojoAttachPoint=\"decrementMonthImageNode\">\n\t\t\t\t\t\t\t\t</span>\n\t\t\t\t\t\t\t\t<span dojoAttachPoint=\"monthLabelNode\" class=\"month\"></span>\n\t\t\t\t\t\t\t</td>\n\t\t\t\t\t\t\t<td class=\"monthCurve monthCurveTR\" valign=\"top\"></td>\n\t\t\t\t\t\t</tr>\n\t\t\t\t\t</table>\n\t\t\t\t</td>\n\t\t\t</tr>\n\t\t</thead>\n\t\t<tbody>\n\t\t\t<tr>\n\t\t\t\t<td colspan=\"3\">\n\t\t\t\t\t<table class=\"calendarBodyContainer\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n\t\t\t\t\t\t<thead>\n\t\t\t\t\t\t\t<tr dojoAttachPoint=\"dayLabelsRow\">\n\t\t\t\t\t\t\t\t<td></td>\n\t\t\t\t\t\t\t\t<td></td>\n\t\t\t\t\t\t\t\t<td></td>\n\t\t\t\t\t\t\t\t<td></td>\n\t\t\t\t\t\t\t\t<td></td>\n\t\t\t\t\t\t\t\t<td></td>\n\t\t\t\t\t\t\t\t<td></td>\n\t\t\t\t\t\t\t</tr>\n\t\t\t\t\t\t</thead>\n\t\t\t\t\t\t<tbody dojoAttachPoint=\"calendarDatesContainerNode\" \n\t\t\t\t\t\t\tdojoAttachEvent=\"onClick: _handleUiClick;\">\n\t\t\t\t\t\t\t<tr dojoAttachPoint=\"calendarWeekTemplate\">\n\t\t\t\t\t\t\t\t<td></td>\n\t\t\t\t\t\t\t\t<td></td>\n\t\t\t\t\t\t\t\t<td></td>\n\t\t\t\t\t\t\t\t<td></td>\n\t\t\t\t\t\t\t\t<td></td>\n\t\t\t\t\t\t\t\t<td></td>\n\t\t\t\t\t\t\t\t<td></td>\n\t\t\t\t\t\t\t</tr>\n\t\t\t\t\t\t</tbody>\n\t\t\t\t\t</table>\n\t\t\t\t</td>\n\t\t\t</tr>\n\t\t</tbody>\n\t\t<tfoot>\n\t\t\t<tr>\n\t\t\t\t<td colspan=\"3\" class=\"yearWrapper\">\n\t\t\t\t\t<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" class=\"yearContainer\">\n\t\t\t\t\t\t<tr>\n\t\t\t\t\t\t\t<td class=\"curveBL\" valign=\"top\"></td>\n\t\t\t\t\t\t\t<td valign=\"top\">\n\t\t\t\t\t\t\t\t<h3 class=\"yearLabel\">\n\t\t\t\t\t\t\t\t\t<span dojoAttachPoint=\"previousYearLabelNode\"\n\t\t\t\t\t\t\t\t\t\tdojoAttachEvent=\"onClick: onIncrementYear;\" class=\"previousYear\"></span>\n\t\t\t\t\t\t\t\t\t<span class=\"selectedYear\" dojoAttachPoint=\"currentYearLabelNode\"></span>\n\t\t\t\t\t\t\t\t\t<span dojoAttachPoint=\"nextYearLabelNode\" \n\t\t\t\t\t\t\t\t\t\tdojoAttachEvent=\"onClick: onIncrementYear;\" class=\"nextYear\"></span>\n\t\t\t\t\t\t\t\t</h3>\n\t\t\t\t\t\t\t</td>\n\t\t\t\t\t\t\t<td class=\"curveBR\" valign=\"top\"></td>\n\t\t\t\t\t\t</tr>\n\t\t\t\t\t</table>\n\t\t\t\t</td>\n\t\t\t</tr>\n\t\t</tfoot>\n\t</table>\n</div>\n", templateCssString:".datePickerContainer {\n\twidth:164px; /* needed for proper user styling */\n}\n\n.calendarContainer {\n/*\tborder:1px solid #566f8f;*/\n}\n\n.calendarBodyContainer {\n\twidth:100%; /* needed for the explode effect (explain?) */\n\tbackground: #7591bc url(\"images/dpBg.gif\") top left repeat-x;\n}\n\n.calendarBodyContainer thead tr td {\n\tcolor:#293a4b;\n\tfont:bold 0.75em Helvetica, Arial, Verdana, sans-serif;\n\ttext-align:center;\n\tpadding:0.25em;\n\tbackground: url(\"images/dpHorizLine.gif\") bottom left repeat-x;\n}\n\n.calendarBodyContainer tbody tr td {\n\tcolor:#fff;\n\tfont:bold 0.7em Helvetica, Arial, Verdana, sans-serif;\n\ttext-align:center;\n\tpadding:0.4em;\n\tbackground: url(\"images/dpVertLine.gif\") top right repeat-y;\n\tcursor:pointer;\n\tcursor:hand;\n}\n\n\n.monthWrapper {\n\tpadding-bottom:2px;\n\tbackground: url(\"images/dpHorizLine.gif\") bottom left repeat-x;\n}\n\n.monthContainer {\n\twidth:100%;\n}\n\n.monthLabelContainer {\n\ttext-align:center;\n\tfont:bold 0.75em Helvetica, Arial, Verdana, sans-serif;\n\tbackground: url(\"images/dpMonthBg.png\") repeat-x top left !important;\n\tcolor:#293a4b;\n\tpadding:0.25em;\n}\n\n.monthCurve {\n\twidth:12px;\n}\n\n.monthCurveTL {\n\tbackground: url(\"images/dpCurveTL.png\") no-repeat top left !important;\n}\n\n.monthCurveTR {\n\t\tbackground: url(\"images/dpCurveTR.png\") no-repeat top right !important;\n}\n\n\n.yearWrapper {\n\tbackground: url(\"images/dpHorizLineFoot.gif\") top left repeat-x;\n\tpadding-top:2px;\n}\n\n.yearContainer {\n\twidth:100%;\n}\n\n.yearContainer td {\n\tbackground:url(\"images/dpYearBg.png\") top left repeat-x;\n}\n\n.yearContainer .yearLabel {\n\tmargin:0;\n\tpadding:0.45em 0 0.45em 0;\n\tcolor:#fff;\n\tfont:bold 0.75em Helvetica, Arial, Verdana, sans-serif;\n\ttext-align:center;\n}\n\n.curveBL {\n\tbackground: url(\"images/dpCurveBL.png\") bottom left no-repeat !important;\n\twidth:9px !important;\n\tpadding:0;\n\tmargin:0;\n}\n\n.curveBR {\n\tbackground: url(\"images/dpCurveBR.png\") bottom right no-repeat !important;\n\twidth:9px !important;\n\tpadding:0;\n\tmargin:0;\n}\n\n\n.previousMonth {\n\tbackground-color:#6782a8 !important;\n}\n\n.previousMonthDisabled {\n\tbackground-color:#a4a5a6 !important;\n\tcursor:default !important\n}\n.currentMonth {\n}\n\n.currentMonthDisabled {\n\tbackground-color:#bbbbbc !important;\n\tcursor:default !important\n}\n.nextMonth {\n\tbackground-color:#6782a8 !important;\n}\n.nextMonthDisabled {\n\tbackground-color:#a4a5a6 !important;\n\tcursor:default !important;\n}\n\n.currentDate {\n\ttext-decoration:underline;\n\tfont-style:italic;\n}\n\n.selectedDate {\n\tbackground-color:#fff !important;\n\tcolor:#6782a8 !important;\n}\n\n.yearLabel .selectedYear {\n\tpadding:0.2em;\n\tbackground-color:#9ec3fb !important;\n}\n\n.nextYear, .previousYear {\n\tcursor:pointer;cursor:hand;\n\tpadding:0;\n}\n\n.nextYear {\n\tmargin:0 0 0 0.55em;\n}\n\n.previousYear {\n\tmargin:0 0.55em 0 0;\n}\n\n.incrementControl {\n\tcursor:pointer;cursor:hand;\n\twidth:1em;\n}\n\n.increase {\n\tfloat:right;\n}\n\n.decrease {\n\tfloat:left;\n}\n\n.lastColumn {\n\tbackground-image:none !important;\n}\n\n\n", templateCssPath:dojo.uri.moduleUri("dojo.widget", "templates/DatePicker.css"), postMixInProperties:function () {dojo.widget.DatePicker.superclass.postMixInProperties.apply(this, arguments);if (!this.weekStartsOn) {this.weekStartsOn = dojo.date.getFirstDayOfWeek(this.lang);}this.today = new Date();this.today.setHours(0, 0, 0, 0);if (typeof (this.value) == "string" && this.value.toLowerCase() == "today") {this.value = new Date();} else {if (this.value && (typeof this.value == "string") && (this.value.split("-").length > 2)) {this.value = dojo.date.fromRfc3339(this.value);this.value.setHours(0, 0, 0, 0);}}}, fillInTemplate:function (args, frag) {dojo.widget.DatePicker.superclass.fillInTemplate.apply(this, arguments);var source = this.getFragNodeRef(frag);dojo.html.copyStyle(this.domNode, source);this.weekTemplate = dojo.dom.removeNode(this.calendarWeekTemplate);this._preInitUI(this.value ? this.value : this.today, false, true);var dayLabels = dojo.lang.unnest(dojo.date.getNames("days", this.dayWidth, "standAlone", this.lang));if (this.weekStartsOn > 0) {for (var i = 0; i < this.weekStartsOn; i++) {dayLabels.push(dayLabels.shift());}}var dayLabelNodes = this.dayLabelsRow.getElementsByTagName("td");for (i = 0; i < 7; i++) {dayLabelNodes.item(i).innerHTML = dayLabels[i];}if (this.value) {this.setValue(this.value);}}, getValue:function () {return dojo.date.toRfc3339(new Date(this.value), "dateOnly");}, getDate:function () {return this.value;}, setValue:function (rfcDate) {this.setDate(rfcDate);}, setDate:function (dateObj) {if (dateObj == "") {this.value = "";this._preInitUI(this.curMonth, false, true);} else {if (typeof dateObj == "string") {this.value = dojo.date.fromRfc3339(dateObj);this.value.setHours(0, 0, 0, 0);} else {this.value = new Date(dateObj);this.value.setHours(0, 0, 0, 0);}}if (this.selectedNode != null) {dojo.html.removeClass(this.selectedNode, this.classNames.selectedDate);}if (this.clickedNode != null) {dojo.debug("adding selectedDate");dojo.html.addClass(this.clickedNode, this.classNames.selectedDate);this.selectedNode = this.clickedNode;} else {this._preInitUI(this.value, false, true);}this.clickedNode = null;this.onValueChanged(this.value);}, _preInitUI:function (dateObj, initFirst, initUI) {if (typeof (this.startDate) == "string") {this.startDate = dojo.date.fromRfc3339(this.startDate);}if (typeof (this.endDate) == "string") {this.endDate = dojo.date.fromRfc3339(this.endDate);}this.startDate.setHours(0, 0, 0, 0);this.endDate.setHours(24, 0, 0, -1);if (dateObj < this.startDate || dateObj > this.endDate) {dateObj = new Date((dateObj < this.startDate) ? this.startDate : this.endDate);}this.firstDay = this._initFirstDay(dateObj, initFirst);this.selectedIsUsed = false;this.currentIsUsed = false;var nextDate = new Date(this.firstDay);var tmpMonth = nextDate.getMonth();this.curMonth = new Date(nextDate);this.curMonth.setDate(nextDate.getDate() + 6);this.curMonth.setDate(1);if (this.displayWeeks == "" || this.adjustWeeks) {this.adjustWeeks = true;this.displayWeeks = Math.ceil((dojo.date.getDaysInMonth(this.curMonth) + this._getAdjustedDay(this.curMonth)) / 7);}var days = this.displayWeeks * 7;if (dojo.date.diff(this.startDate, this.endDate, dojo.date.dateParts.DAY) < days) {this.staticDisplay = true;if (dojo.date.diff(nextDate, this.endDate, dojo.date.dateParts.DAY) > days) {this._preInitUI(this.startDate, true, false);nextDate = new Date(this.firstDay);}this.curMonth = new Date(nextDate);this.curMonth.setDate(nextDate.getDate() + 6);this.curMonth.setDate(1);var curClass = (nextDate.getMonth() == this.curMonth.getMonth()) ? "current" : "previous";}if (initUI) {this._initUI(days);}}, _initUI:function (days) {dojo.dom.removeChildren(this.calendarDatesContainerNode);for (var i = 0; i < this.displayWeeks; i++) {this.calendarDatesContainerNode.appendChild(this.weekTemplate.cloneNode(true));}var nextDate = new Date(this.firstDay);this._setMonthLabel(this.curMonth.getMonth());this._setYearLabels(this.curMonth.getFullYear());var calendarNodes = this.calendarDatesContainerNode.getElementsByTagName("td");var calendarRows = this.calendarDatesContainerNode.getElementsByTagName("tr");var currentCalendarNode;for (i = 0; i < days; i++) {currentCalendarNode = calendarNodes.item(i);currentCalendarNode.innerHTML = nextDate.getDate();currentCalendarNode.setAttribute("djDateValue", nextDate.valueOf());var curClass = (nextDate.getMonth() != this.curMonth.getMonth() && Number(nextDate) < Number(this.curMonth)) ? "previous" : (nextDate.getMonth() == this.curMonth.getMonth()) ? "current" : "next";var mappedClass = curClass;if (this._isDisabledDate(nextDate)) {var classMap = {previous:"disabledPrevious", current:"disabledCurrent", next:"disabledNext"};mappedClass = classMap[curClass];}dojo.html.setClass(currentCalendarNode, this._getDateClassName(nextDate, mappedClass));if (dojo.html.hasClass(currentCalendarNode, this.classNames.selectedDate)) {this.selectedNode = currentCalendarNode;}nextDate = dojo.date.add(nextDate, dojo.date.dateParts.DAY, 1);}this.lastDay = dojo.date.add(nextDate, dojo.date.dateParts.DAY, -1);this._initControls();}, _initControls:function () {var d = this.firstDay;var d2 = this.lastDay;var decWeek, incWeek, decMonth, incMonth, decYear, incYear;decWeek = incWeek = decMonth = incMonth = decYear = incYear = !this.staticDisplay;with (dojo.date.dateParts) {var add = dojo.date.add;if (decWeek && add(d, DAY, (-1 * (this._getAdjustedDay(d) + 1))) < this.startDate) {decWeek = decMonth = decYear = false;}if (incWeek && d2 > this.endDate) {incWeek = incMonth = incYear = false;}if (decMonth && add(d, DAY, -1) < this.startDate) {decMonth = decYear = false;}if (incMonth && add(d2, DAY, 1) > this.endDate) {incMonth = incYear = false;}if (decYear && add(d2, YEAR, -1) < this.startDate) {decYear = false;}if (incYear && add(d, YEAR, 1) > this.endDate) {incYear = false;}}function enableControl(node, enabled) {dojo.html.setVisibility(node, enabled ? "" : "hidden");}enableControl(this.decreaseWeekNode, decWeek);enableControl(this.increaseWeekNode, incWeek);enableControl(this.decreaseMonthNode, decMonth);enableControl(this.increaseMonthNode, incMonth);enableControl(this.previousYearLabelNode, decYear);enableControl(this.nextYearLabelNode, incYear);}, _incrementWeek:function (evt) {var d = new Date(this.firstDay);switch (evt.target) {case this.increaseWeekNode.getElementsByTagName("img").item(0):case this.increaseWeekNode:var tmpDate = dojo.date.add(d, dojo.date.dateParts.WEEK, 1);if (tmpDate < this.endDate) {d = dojo.date.add(d, dojo.date.dateParts.WEEK, 1);}break;case this.decreaseWeekNode.getElementsByTagName("img").item(0):case this.decreaseWeekNode:if (d >= this.startDate) {d = dojo.date.add(d, dojo.date.dateParts.WEEK, -1);}break;}this._preInitUI(d, true, true);}, _incrementMonth:function (evt) {var d = new Date(this.curMonth);var tmpDate = new Date(this.firstDay);switch (evt.currentTarget) {case this.increaseMonthNode.getElementsByTagName("img").item(0):case this.increaseMonthNode:tmpDate = dojo.date.add(tmpDate, dojo.date.dateParts.DAY, this.displayWeeks * 7);if (tmpDate < this.endDate) {d = dojo.date.add(d, dojo.date.dateParts.MONTH, 1);} else {var revertToEndDate = true;}break;case this.decreaseMonthNode.getElementsByTagName("img").item(0):case this.decreaseMonthNode:if (tmpDate > this.startDate) {d = dojo.date.add(d, dojo.date.dateParts.MONTH, -1);} else {var revertToStartDate = true;}break;}if (revertToStartDate) {d = new Date(this.startDate);} else {if (revertToEndDate) {d = new Date(this.endDate);}}this._preInitUI(d, false, true);}, _incrementYear:function (evt) {var year = this.curMonth.getFullYear();var tmpDate = new Date(this.firstDay);switch (evt.target) {case this.nextYearLabelNode:tmpDate = dojo.date.add(tmpDate, dojo.date.dateParts.YEAR, 1);if (tmpDate < this.endDate) {year++;} else {var revertToEndDate = true;}break;case this.previousYearLabelNode:tmpDate = dojo.date.add(tmpDate, dojo.date.dateParts.YEAR, -1);if (tmpDate > this.startDate) {year--;} else {var revertToStartDate = true;}break;}var d;if (revertToStartDate) {d = new Date(this.startDate);} else {if (revertToEndDate) {d = new Date(this.endDate);} else {d = new Date(year, this.curMonth.getMonth(), 1);}}this._preInitUI(d, false, true);}, onIncrementWeek:function (evt) {evt.stopPropagation();if (!this.staticDisplay) {this._incrementWeek(evt);}}, onIncrementMonth:function (evt) {evt.stopPropagation();if (!this.staticDisplay) {this._incrementMonth(evt);}}, onIncrementYear:function (evt) {evt.stopPropagation();if (!this.staticDisplay) {this._incrementYear(evt);}}, _setMonthLabel:function (monthIndex) {this.monthLabelNode.innerHTML = dojo.date.getNames("months", "wide", "standAlone", this.lang)[monthIndex];}, _setYearLabels:function (year) {var y = year - 1;var that = this;function f(n) {that[n + "YearLabelNode"].innerHTML = dojo.date.format(new Date(y++, 0), {formatLength:"yearOnly", locale:that.lang});}f("previous");f("current");f("next");}, _getDateClassName:function (date, monthState) {var currentClassName = this.classNames[monthState];if ((!this.selectedIsUsed && this.value) && (Number(date) == Number(this.value))) {currentClassName = this.classNames.selectedDate + " " + currentClassName;this.selectedIsUsed = true;}if ((!this.currentIsUsed) && (Number(date) == Number(this.today))) {currentClassName = currentClassName + " " + this.classNames.currentDate;this.currentIsUsed = true;}return currentClassName;}, onClick:function (evt) {dojo.event.browser.stopEvent(evt);}, _handleUiClick:function (evt) {var eventTarget = evt.target;if (eventTarget.nodeType != dojo.dom.ELEMENT_NODE) {eventTarget = eventTarget.parentNode;}dojo.event.browser.stopEvent(evt);this.selectedIsUsed = this.todayIsUsed = false;if (dojo.html.hasClass(eventTarget, this.classNames["disabledPrevious"]) || dojo.html.hasClass(eventTarget, this.classNames["disabledCurrent"]) || dojo.html.hasClass(eventTarget, this.classNames["disabledNext"])) {return;}this.clickedNode = eventTarget;this.setDate(new Date(Number(dojo.html.getAttribute(eventTarget, "djDateValue"))));}, onValueChanged:function (date) {}, _isDisabledDate:function (dateObj) {if (dateObj < this.startDate || dateObj > this.endDate) {return true;}return this.isDisabledDate(dateObj, this.lang);}, isDisabledDate:function (dateObj, locale) {return false;}, _initFirstDay:function (dateObj, adj) {var d = new Date(dateObj);if (!adj) {d.setDate(1);}d.setDate(d.getDate() - this._getAdjustedDay(d, this.weekStartsOn));d.setHours(0, 0, 0, 0);return d;}, _getAdjustedDay:function (dateObj) {var days = [0, 1, 2, 3, 4, 5, 6];if (this.weekStartsOn > 0) {for (var i = 0; i < this.weekStartsOn; i++) {days.unshift(days.pop());}}return days[dateObj.getDay()];}, destroy:function () {dojo.widget.DatePicker.superclass.destroy.apply(this, arguments);dojo.html.destroyNode(this.weekTemplate);}});