/* Copyright (c) 2004-2009, The Dojo Foundation All Rights Reserved. Available via Academic Free License >= 2.1 OR the modified BSD license. see: http://dojotoolkit.org/license for details */ if(!dojo._hasResource["dojox.widget.CalendarViews"]){dojo._hasResource["dojox.widget.CalendarViews"]=true;dojo.provide("dojox.widget.CalendarViews");dojo.experimental("dojox.widget.CalendarViews");dojo.require("dojox.widget.Calendar");dojo.declare("dojox.widget._CalendarMonth",null,{constructor:function(){this._addView(dojox.widget._CalendarMonthView);}});dojo.declare("dojox.widget._CalendarMonthView",[dojox.widget._CalendarView,dijit._Templated],{templateString:dojo.cache("dojox.widget","Calendar/CalendarMonth.html","
\n \n \n \n \n \n \n
\n
\n
\n
\n"),datePart:"year",headerClass:"dojoxCalendarMonthHeader",postCreate:function(){this.cloneClass(".dojoxCalendarMonthTemplate",3);this.cloneClass(".dojoxCalendarMonthGroupTemplate",2);this._populateMonths();this.addFx(".dojoxCalendarMonthLabel",this.domNode);},_setValueAttr:function(_1){this.header.innerHTML=_1.getFullYear();},_getMonthNames:dojox.widget._CalendarMonthYearView.prototype._getMonthNames,_populateMonths:dojox.widget._CalendarMonthYearView.prototype._populateMonths,onClick:function(_2){if(!dojo.hasClass(_2.target,"dojoxCalendarMonthLabel")){dojo.stopEvent(_2);return;}var _3=_2.target.parentNode.cellIndex+(_2.target.parentNode.parentNode.rowIndex*4);var _4=this.attr("value");_4.setMonth(_3);this.onValueSelected(_4,_3);}});dojo.declare("dojox.widget._CalendarYear",null,{parent:null,constructor:function(){this._addView(dojox.widget._CalendarYearView);}});dojo.declare("dojox.widget._CalendarYearView",[dojox.widget._CalendarView,dijit._Templated],{templateString:dojo.cache("dojox.widget","Calendar/CalendarYear.html","
\n \n \n \n \n \n \n
\n
\n
\n
\n
\n"),displayedYears:6,postCreate:function(){this.cloneClass(".dojoxCalendarYearTemplate",3);this.cloneClass(".dojoxCalendarYearGroupTemplate",2);this._populateYears();this.addFx(".dojoxCalendarYearLabel",this.domNode);},_setValueAttr:function(_5){this._populateYears(_5.getFullYear());},_populateYears:dojox.widget._CalendarMonthYearView.prototype._populateYears,adjustDate:function(_6,_7){return dojo.date.add(_6,"year",_7*12);},onClick:function(_8){if(!dojo.hasClass(_8.target,"dojoxCalendarYearLabel")){dojo.stopEvent(_8);return;}var _9=Number(_8.target.innerHTML);var _a=this.attr("value");_a.setYear(_9);this.onValueSelected(_a,_9);}});dojo.declare("dojox.widget.Calendar3Pane",[dojox.widget._CalendarBase,dojox.widget._CalendarDay,dojox.widget._CalendarMonth,dojox.widget._CalendarYear],{});dojo.declare("dojox.widget.MonthlyCalendar",[dojox.widget._CalendarBase,dojox.widget._CalendarMonth],{});dojo.declare("dojox.widget.YearlyCalendar",[dojox.widget._CalendarBase,dojox.widget._CalendarYear],{});}