Index: openacs-4/packages/ajaxhelper/www/resources/yui/calendar/calendar.js =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/ajaxhelper/www/resources/yui/calendar/calendar.js,v diff -u -r1.1 -r1.2 --- openacs-4/packages/ajaxhelper/www/resources/yui/calendar/calendar.js 21 Oct 2006 06:14:56 -0000 1.1 +++ openacs-4/packages/ajaxhelper/www/resources/yui/calendar/calendar.js 25 Dec 2006 16:40:00 -0000 1.2 @@ -2,52 +2,538 @@ Copyright (c) 2006, Yahoo! Inc. All rights reserved. Code licensed under the BSD License: http://developer.yahoo.net/yui/license.txt -Version 0.11.3 +version 0.12.1 */ /** -*

YAHOO.widget.DateMath is used for simple date manipulation. The class is a static utility -* used for adding, subtracting, and comparing dates.

+* Config is a utility used within an Object to allow the implementer to maintain a list of local configuration properties and listen for changes to those properties dynamically using CustomEvent. The initial values are also maintained so that the configuration can be reset at any given point to its initial state. +* @namespace YAHOO.util +* @class Config +* @constructor +* @param {Object} owner The owner Object to which this Config Object belongs */ -YAHOO.widget.DateMath = new function() { +YAHOO.util.Config = function(owner) { + if (owner) { + this.init(owner); + } +}; +YAHOO.util.Config.prototype = { + /** + * Object reference to the owner of this Config Object + * @property owner + * @type Object + */ + owner : null, + + /** + * Boolean flag that specifies whether a queue is currently being executed + * @property queueInProgress + * @type Boolean + */ + queueInProgress : false, + + + /** + * Validates that the value passed in is a Boolean. + * @method checkBoolean + * @param {Object} val The value to validate + * @return {Boolean} true, if the value is valid + */ + checkBoolean: function(val) { + if (typeof val == 'boolean') { + return true; + } else { + return false; + } + }, + + /** + * Validates that the value passed in is a number. + * @method checkNumber + * @param {Object} val The value to validate + * @return {Boolean} true, if the value is valid + */ + checkNumber: function(val) { + if (isNaN(val)) { + return false; + } else { + return true; + } + } +}; + + +/** +* Initializes the configuration Object and all of its local members. +* @method init +* @param {Object} owner The owner Object to which this Config Object belongs +*/ +YAHOO.util.Config.prototype.init = function(owner) { + + this.owner = owner; + + /** + * Object reference to the owner of this Config Object + * @event configChangedEvent + */ + this.configChangedEvent = new YAHOO.util.CustomEvent("configChanged"); + + this.queueInProgress = false; + + /* Private Members */ + + /** + * Maintains the local collection of configuration property objects and their specified values + * @property config + * @private + * @type Object + */ + var config = {}; + + /** + * Maintains the local collection of configuration property objects as they were initially applied. + * This object is used when resetting a property. + * @property initialConfig + * @private + * @type Object + */ + var initialConfig = {}; + + /** + * Maintains the local, normalized CustomEvent queue + * @property eventQueue + * @private + * @type Object + */ + var eventQueue = []; + + /** + * Fires a configuration property event using the specified value. + * @method fireEvent + * @private + * @param {String} key The configuration property's name + * @param {value} Object The value of the correct type for the property + */ + var fireEvent = function( key, value ) { + key = key.toLowerCase(); + + var property = config[key]; + + if (typeof property != 'undefined' && property.event) { + property.event.fire(value); + } + }; + /* End Private Members */ + + /** + * Adds a property to the Config Object's private config hash. + * @method addProperty + * @param {String} key The configuration property's name + * @param {Object} propertyObject The Object containing all of this property's arguments + */ + this.addProperty = function( key, propertyObject ) { + key = key.toLowerCase(); + + config[key] = propertyObject; + + propertyObject.event = new YAHOO.util.CustomEvent(key); + propertyObject.key = key; + + if (propertyObject.handler) { + propertyObject.event.subscribe(propertyObject.handler, this.owner, true); + } + + this.setProperty(key, propertyObject.value, true); + + if (! propertyObject.suppressEvent) { + this.queueProperty(key, propertyObject.value); + } + }; + + /** + * Returns a key-value configuration map of the values currently set in the Config Object. + * @method getConfig + * @return {Object} The current config, represented in a key-value map + */ + this.getConfig = function() { + var cfg = {}; + + for (var prop in config) { + var property = config[prop]; + if (typeof property != 'undefined' && property.event) { + cfg[prop] = property.value; + } + } + + return cfg; + }; + + /** + * Returns the value of specified property. + * @method getProperty + * @param {String} key The name of the property + * @return {Object} The value of the specified property + */ + this.getProperty = function(key) { + key = key.toLowerCase(); + + var property = config[key]; + if (typeof property != 'undefined' && property.event) { + return property.value; + } else { + return undefined; + } + }; + + /** + * Resets the specified property's value to its initial value. + * @method resetProperty + * @param {String} key The name of the property + * @return {Boolean} True is the property was reset, false if not + */ + this.resetProperty = function(key) { + key = key.toLowerCase(); + + var property = config[key]; + if (typeof property != 'undefined' && property.event) { + if (initialConfig[key] && initialConfig[key] != 'undefined') { + this.setProperty(key, initialConfig[key]); + } + return true; + } else { + return false; + } + }; + + /** + * Sets the value of a property. If the silent property is passed as true, the property's event will not be fired. + * @method setProperty + * @param {String} key The name of the property + * @param {String} value The value to set the property to + * @param {Boolean} silent Whether the value should be set silently, without firing the property event. + * @return {Boolean} True, if the set was successful, false if it failed. + */ + this.setProperty = function(key, value, silent) { + key = key.toLowerCase(); + + if (this.queueInProgress && ! silent) { + this.queueProperty(key,value); // Currently running through a queue... + return true; + } else { + var property = config[key]; + if (typeof property != 'undefined' && property.event) { + if (property.validator && ! property.validator(value)) { // validator + return false; + } else { + property.value = value; + if (! silent) { + fireEvent(key, value); + this.configChangedEvent.fire([key, value]); + } + return true; + } + } else { + return false; + } + } + }; + + /** + * Sets the value of a property and queues its event to execute. If the event is already scheduled to execute, it is + * moved from its current position to the end of the queue. + * @method queueProperty + * @param {String} key The name of the property + * @param {String} value The value to set the property to + * @return {Boolean} true, if the set was successful, false if it failed. + */ + this.queueProperty = function(key, value) { + key = key.toLowerCase(); + + var property = config[key]; + + if (typeof property != 'undefined' && property.event) { + if (typeof value != 'undefined' && property.validator && ! property.validator(value)) { // validator + return false; + } else { + + if (typeof value != 'undefined') { + property.value = value; + } else { + value = property.value; + } + + var foundDuplicate = false; + + for (var i=0;i ms) { return true; } else { return false; } - }; + }, /** * Determines whether a given date is between two other dates on the calendar. + * @method between * @param {Date} date The date to check for * @param {Date} dateBegin The start of the range * @param {Date} dateEnd The end of the range * @return {Boolean} true if the date occurs between the compared dates; false if not. */ - this.between = function(date, dateBegin, dateEnd) { + between : function(date, dateBegin, dateEnd) { if (this.after(date, dateBegin) && this.before(date, dateEnd)) { return true; } else { return false; } - }; - + }, + /** * Retrieves a JavaScript Date object representing January 1 of any given year. - * @param {Integer} calendarYear The calendar year for which to retrieve January 1 + * @method getJan1 + * @param {Number} calendarYear The calendar year for which to retrieve January 1 * @return {Date} January 1 of the calendar year specified. */ - this.getJan1 = function(calendarYear) { - return new Date(calendarYear,0,1); - }; + getJan1 : function(calendarYear) { + return new Date(calendarYear,0,1); + }, /** * Calculates the number of days the specified date is from January 1 of the specified calendar year. * Passing January 1 to this function would return an offset value of zero. + * @method getDayOffset * @param {Date} date The JavaScript date for which to find the offset - * @param {Integer} calendarYear The calendar year to use for determining the offset - * @return {Integer} The number of days since January 1 of the given year + * @param {Number} calendarYear The calendar year to use for determining the offset + * @return {Number} The number of days since January 1 of the given year */ - this.getDayOffset = function(date, calendarYear) { + getDayOffset : function(date, calendarYear) { var beginYear = this.getJan1(calendarYear); // Find the start of the year. This will be in week 1. - + // Find the number of days the passed in date is away from the calendar year start var dayOffset = Math.ceil((date.getTime()-beginYear.getTime()) / this.ONE_DAY_MS); return dayOffset; - }; + }, /** * Calculates the week number for the given date. This function assumes that week 1 is the @@ -169,1389 +662,1939 @@ * date if the date overlaps years. For instance, a week may be considered week 1 of 2005, or * week 53 of 2004. Specifying the optional calendarYear allows one to make this distinction * easily. + * @method getWeekNumber * @param {Date} date The JavaScript date for which to find the week number - * @param {Integer} calendarYear OPTIONAL - The calendar year to use for determining the week number. Default is + * @param {Number} calendarYear OPTIONAL - The calendar year to use for determining the week number. Default is * the calendar year of parameter "date". - * @param {Integer} weekStartsOn OPTIONAL - The integer (0-6) representing which day a week begins on. Default is 0 (for Sunday). - * @return {Integer} The week number of the given date. + * @param {Number} weekStartsOn OPTIONAL - The integer (0-6) representing which day a week begins on. Default is 0 (for Sunday). + * @return {Number} The week number of the given date. */ - this.getWeekNumber = function(date, calendarYear, weekStartsOn) { - date.setHours(12,0,0,0); + getWeekNumber : function(date, calendarYear) { + date = this.clearTime(date); + var nearestThurs = new Date(date.getTime() + (4 * this.ONE_DAY_MS) - ((date.getDay()) * this.ONE_DAY_MS)); - if (! weekStartsOn) { - weekStartsOn = 0; - } - if (! calendarYear) { - calendarYear = date.getFullYear(); - } - - var weekNum = -1; - - var jan1 = this.getJan1(calendarYear); + var jan1 = new Date(nearestThurs.getFullYear(),0,1); + var dayOfYear = ((nearestThurs.getTime() - jan1.getTime()) / this.ONE_DAY_MS) - 1; - var jan1Offset = jan1.getDay() - weekStartsOn; - var jan1DayOfWeek = (jan1Offset >= 0 ? jan1Offset : (7 + jan1Offset)); - - var endOfWeek1 = this.add(jan1, this.DAY, (6 - jan1DayOfWeek)); - endOfWeek1.setHours(23,59,59,999); - - var month = date.getMonth(); - var day = date.getDate(); - var year = date.getFullYear(); - - var dayOffset = this.getDayOffset(date, calendarYear); // Days since Jan 1, Calendar Year - - if (dayOffset < 0 || this.before(date, endOfWeek1)) { - weekNum = 1; - } else { - weekNum = 2; - var weekBegin = new Date(endOfWeek1.getTime() + 1); - var weekEnd = this.add(weekBegin, this.WEEK, 1); - - while (! this.between(date, weekBegin, weekEnd)) { - weekBegin = this.add(weekBegin, this.WEEK, 1); - weekEnd = this.add(weekEnd, this.WEEK, 1); - weekNum += 1; - } - } - + var weekNum = Math.ceil((dayOfYear)/ 7); return weekNum; - }; + }, /** * Determines if a given week overlaps two different years. + * @method isYearOverlapWeek * @param {Date} weekBeginDate The JavaScript Date representing the first day of the week. * @return {Boolean} true if the date overlaps two different years. */ - this.isYearOverlapWeek = function(weekBeginDate) { + isYearOverlapWeek : function(weekBeginDate) { var overlaps = false; var nextWeek = this.add(weekBeginDate, this.DAY, 6); if (nextWeek.getFullYear() != weekBeginDate.getFullYear()) { overlaps = true; } return overlaps; - }; + }, /** * Determines if a given week overlaps two different months. + * @method isMonthOverlapWeek * @param {Date} weekBeginDate The JavaScript Date representing the first day of the week. * @return {Boolean} true if the date overlaps two different months. */ - this.isMonthOverlapWeek = function(weekBeginDate) { + isMonthOverlapWeek : function(weekBeginDate) { var overlaps = false; var nextWeek = this.add(weekBeginDate, this.DAY, 6); if (nextWeek.getMonth() != weekBeginDate.getMonth()) { overlaps = true; } return overlaps; - }; + }, /** * Gets the first day of a month containing a given date. + * @method findMonthStart * @param {Date} date The JavaScript Date used to calculate the month start * @return {Date} The JavaScript Date representing the first day of the month */ - this.findMonthStart = function(date) { + findMonthStart : function(date) { var start = new Date(date.getFullYear(), date.getMonth(), 1); return start; - }; + }, /** * Gets the last day of a month containing a given date. + * @method findMonthEnd * @param {Date} date The JavaScript Date used to calculate the month end * @return {Date} The JavaScript Date representing the last day of the month */ - this.findMonthEnd = function(date) { + findMonthEnd : function(date) { var start = this.findMonthStart(date); var nextMonth = this.add(start, this.MONTH, 1); var end = this.subtract(nextMonth, this.DAY, 1); return end; - }; + }, /** * Clears the time fields from a given date, effectively setting the time to midnight. + * @method clearTime * @param {Date} date The JavaScript Date for which the time fields will be cleared * @return {Date} The JavaScript Date cleared of all time fields */ - this.clearTime = function(date) { - date.setHours(0,0,0,0); + clearTime : function(date) { + date.setHours(12,0,0,0); return date; - }; -} + } +}; + /** -*

Calendar_Core is the base class for the Calendar widget. In its most basic +* The Calendar component is a UI control that enables users to choose one or more dates from a graphical calendar presented in a one-month ("one-up") or two-month ("two-up") interface. Calendars are generated entirely via script and can be navigated without any page refreshes. +* @module calendar +* @title Calendar +* @namespace YAHOO.widget +* @requires yahoo,dom,event +*/ + +/** +* Calendar is the base class for the Calendar widget. In its most basic * implementation, it has the ability to render a calendar widget on the page * that can be manipulated to select a single date, move back and forth between -* months and years.

+* months and years. *

To construct the placeholder for the calendar widget, the code is as * follows: *

* <div id="cal1Container"></div> * * Note that the table can be replaced with any kind of element. *

+* @namespace YAHOO.widget +* @class Calendar * @constructor * @param {String} id The id of the table element that will represent the calendar widget -* @param {String} containerId The id of the container element that will contain the calendar table -* @param {String} monthyear The month/year string used to set the current calendar page -* @param {String} selected A string of date values formatted using the date parser. The built-in - default date format is MM/DD/YYYY. Ranges are defined using - MM/DD/YYYY-MM/DD/YYYY. Month/day combinations are defined using MM/DD. - Any combination of these can be combined by delimiting the string with - commas. Example: "12/24/2005,12/25,1/18/2006-1/21/2006" +* @param {String} containerId The id of the container div element that will wrap the calendar table +* @param {Object} config The configuration object containing the Calendar's arguments */ -YAHOO.widget.Calendar_Core = function(id, containerId, monthyear, selected) { - if (arguments.length > 0) { - this.init(id, containerId, monthyear, selected); - } -} +YAHOO.widget.Calendar = function(id, containerId, config) { + this.init(id, containerId, config); +}; /** * The path to be used for images loaded for the Calendar +* @property YAHOO.widget.Calendar.IMG_ROOT +* @static * @type String */ -YAHOO.widget.Calendar_Core.IMG_ROOT = (window.location.href.toLowerCase().indexOf("https") == 0 ? "https://a248.e.akamai.net/sec.yimg.com/i/" : "http://us.i1.yimg.com/us.yimg.com/i/"); +YAHOO.widget.Calendar.IMG_ROOT = (window.location.href.toLowerCase().indexOf("https") === 0 ? "https://a248.e.akamai.net/sec.yimg.com/i/" : "http://us.i1.yimg.com/us.yimg.com/i/"); /** * Type constant used for renderers to represent an individual date (M/D/Y) +* @property YAHOO.widget.Calendar.DATE +* @static * @final * @type String */ -YAHOO.widget.Calendar_Core.DATE = "D"; +YAHOO.widget.Calendar.DATE = "D"; /** * Type constant used for renderers to represent an individual date across any year (M/D) +* @property YAHOO.widget.Calendar.MONTH_DAY +* @static * @final * @type String */ -YAHOO.widget.Calendar_Core.MONTH_DAY = "MD"; +YAHOO.widget.Calendar.MONTH_DAY = "MD"; /** * Type constant used for renderers to represent a weekday +* @property YAHOO.widget.Calendar.WEEKDAY +* @static * @final * @type String */ -YAHOO.widget.Calendar_Core.WEEKDAY = "WD"; +YAHOO.widget.Calendar.WEEKDAY = "WD"; /** * Type constant used for renderers to represent a range of individual dates (M/D/Y-M/D/Y) +* @property YAHOO.widget.Calendar.RANGE +* @static * @final * @type String */ -YAHOO.widget.Calendar_Core.RANGE = "R"; +YAHOO.widget.Calendar.RANGE = "R"; /** * Type constant used for renderers to represent a month across any year +* @property YAHOO.widget.Calendar.MONTH +* @static * @final * @type String */ -YAHOO.widget.Calendar_Core.MONTH = "M"; +YAHOO.widget.Calendar.MONTH = "M"; /** * Constant that represents the total number of date cells that are displayed in a given month -* including +* @property YAHOO.widget.Calendar.DISPLAY_DAYS +* @static * @final -* @type Integer +* @type Number */ -YAHOO.widget.Calendar_Core.DISPLAY_DAYS = 42; +YAHOO.widget.Calendar.DISPLAY_DAYS = 42; /** * Constant used for halting the execution of the remainder of the render stack +* @property YAHOO.widget.Calendar.STOP_RENDER +* @static * @final * @type String */ -YAHOO.widget.Calendar_Core.STOP_RENDER = "S"; +YAHOO.widget.Calendar.STOP_RENDER = "S"; -YAHOO.widget.Calendar_Core.prototype = { +YAHOO.widget.Calendar.prototype = { /** * The configuration object used to set up the calendars various locale and style options. + * @property Config + * @private + * @deprecated Configuration properties should be set by calling Calendar.cfg.setProperty. * @type Object */ Config : null, /** * The parent CalendarGroup, only to be set explicitly by the parent group + * @property parent * @type CalendarGroup - */ + */ parent : null, /** * The index of this item in the parent group - * @type Integer + * @property index + * @type Number */ index : -1, /** * The collection of calendar table cells + * @property cells * @type HTMLTableCellElement[] */ cells : null, /** - * The collection of calendar week header cells - * @type HTMLTableCellElement[] - */ - weekHeaderCells : null, - - /** - * The collection of calendar week footer cells - * @type HTMLTableCellElement[] - */ - weekFooterCells : null, - - /** * The collection of calendar cell dates that is parallel to the cells collection. The array contains dates field arrays in the format of [YYYY, M, D]. - * @type Array[](Integer[]) + * @property cellDates + * @type Array[](Number[]) */ cellDates : null, /** * The id that uniquely identifies this calendar. This id should match the id of the placeholder element on the page. + * @property id * @type String */ id : null, /** * The DOM element reference that points to this calendar's container element. The calendar will be inserted into this element when the shell is rendered. + * @property oDomContainer * @type HTMLElement */ oDomContainer : null, /** * A Date object representing today's date. + * @property today * @type Date */ today : null, /** - * The list of render functions, along with required parameters, used to render cells. + * The list of render functions, along with required parameters, used to render cells. + * @property renderStack * @type Array[] */ renderStack : null, /** * A copy of the initial render functions created before rendering. - * @type Array + * @property _renderStack * @private + * @type Array */ _renderStack : null, /** - * A Date object representing the month/year that the calendar is currently set to + * A Date object representing the month/year that the calendar is initially set to + * @property _pageDate + * @private * @type Date */ - pageDate : null, + _pageDate : null, /** - * A Date object representing the month/year that the calendar is initially set to - * @type Date + * The private list of initially selected dates. + * @property _selectedDates * @private + * @type Array */ - _pageDate : null, - + _selectedDates : null, + /** - * A Date object representing the minimum selectable date - * @type Date + * A map of DOM event handlers to attach to cells associated with specific CSS class names + * @property domEventMap + * @type Object */ - minDate : null, - + domEventMap : null +}; + + + +/** +* Initializes the Calendar widget. +* @method init +* @param {String} id The id of the table element that will represent the calendar widget +* @param {String} containerId The id of the container div element that will wrap the calendar table +* @param {Object} config The configuration object containing the Calendar's arguments +*/ +YAHOO.widget.Calendar.prototype.init = function(id, containerId, config) { + this.initEvents(); + this.today = new Date(); + YAHOO.widget.DateMath.clearTime(this.today); + + this.id = id; + this.oDomContainer = document.getElementById(containerId); + /** - * A Date object representing the maximum selectable date - * @type Date + * The Config object used to hold the configuration variables for the Calendar + * @property cfg + * @type YAHOO.util.Config */ - maxDate : null, - + this.cfg = new YAHOO.util.Config(this); + /** - * The list of currently selected dates. The data format for this local collection is - * an array of date field arrays, e.g: - * [ - * [2004,5,25], - * [2004,5,26] - * ] - * @type Array[](Integer[]) + * The local object which contains the Calendar's options + * @property Options + * @type Object */ - selectedDates : null, + this.Options = {}; /** - * The private list of initially selected dates. - * @type Array - * @private + * The local object which contains the Calendar's locale settings + * @property Locale + * @type Object */ - _selectedDates : null, + this.Locale = {}; - /** - * A boolean indicating whether the shell of the calendar has already been rendered to the page - * @type Boolean - */ - shellRendered : false, + this.initStyles(); - /** - * The HTML table element that represents this calendar - * @type HTMLTableElement - */ - table : null, + YAHOO.util.Dom.addClass(this.oDomContainer, this.Style.CSS_CONTAINER); + YAHOO.util.Dom.addClass(this.oDomContainer, this.Style.CSS_SINGLE); - /** - * The HTML cell element that represents the main header cell TH used in the calendar table - * @type HTMLTableCellElement - */ - headerCell : null -}; + this.cellDates = []; + this.cells = []; + this.renderStack = []; + this._renderStack = []; + this.setupConfig(); + if (config) { + this.cfg.applyConfig(config, true); + } + this.cfg.fireQueue(); +}; + /** -* Initializes the calendar widget. This method must be called by all subclass constructors. -* @param {String} id The id of the table element that will represent the calendar widget -* @param {String} containerId The id of the container element that will contain the calendar table -* @param {String} monthyear The month/year string used to set the current calendar page -* @param {String} selected A string of date values formatted using the date parser. The built-in - default date format is MM/DD/YYYY. Ranges are defined using - MM/DD/YYYY-MM/DD/YYYY. Month/day combinations are defined using MM/DD. - Any combination of these can be combined by delimiting the string with - commas. Example: "12/24/2005,12/25,1/18/2006-1/21/2006" +* Renders the built-in IFRAME shim for the IE6 and below +* @method configIframe */ -YAHOO.widget.Calendar_Core.prototype.init = function(id, containerId, monthyear, selected) { - this.setupConfig(); +YAHOO.widget.Calendar.prototype.configIframe = function(type, args, obj) { + var useIframe = args[0]; - this.id = id; + if (YAHOO.util.Dom.inDocument(this.oDomContainer)) { + if (useIframe) { + var pos = YAHOO.util.Dom.getStyle(this.oDomContainer, "position"); - this.cellDates = new Array(); - - this.cells = new Array(); - - this.renderStack = new Array(); - this._renderStack = new Array(); + if (this.browser == "ie" && (pos == "absolute" || pos == "relative")) { + if (! YAHOO.util.Dom.inDocument(this.iframe)) { + this.iframe = document.createElement("iframe"); + this.iframe.src = "javascript:false;"; + YAHOO.util.Dom.setStyle(this.iframe, "opacity", "0"); + this.oDomContainer.insertBefore(this.iframe, this.oDomContainer.firstChild); + } + } + } else { + if (this.iframe) { + if (this.iframe.parentNode) { + this.iframe.parentNode.removeChild(this.iframe); + } + this.iframe = null; + } + } + } +}; - this.oDomContainer = document.getElementById(containerId); - - this.today = new Date(); - YAHOO.widget.DateMath.clearTime(this.today); +/** +* Default handler for the "title" property +* @method configTitle +*/ +YAHOO.widget.Calendar.prototype.configTitle = function(type, args, obj) { + var title = args[0]; + var close = this.cfg.getProperty("close"); - var month; - var year; + var titleDiv; - if (monthyear) { - var aMonthYear = monthyear.split(this.Locale.DATE_FIELD_DELIMITER); - month = parseInt(aMonthYear[this.Locale.MY_MONTH_POSITION-1]); - year = parseInt(aMonthYear[this.Locale.MY_YEAR_POSITION-1]); + if (title && title !== "") { + titleDiv = YAHOO.util.Dom.getElementsByClassName(YAHOO.widget.CalendarGroup.CSS_2UPTITLE, "div", this.oDomContainer)[0] || document.createElement("div"); + titleDiv.className = YAHOO.widget.CalendarGroup.CSS_2UPTITLE; + titleDiv.innerHTML = title; + this.oDomContainer.insertBefore(titleDiv, this.oDomContainer.firstChild); + YAHOO.util.Dom.addClass(this.oDomContainer, "withtitle"); } else { - month = this.today.getMonth()+1; - year = this.today.getFullYear(); + titleDiv = YAHOO.util.Dom.getElementsByClassName(YAHOO.widget.CalendarGroup.CSS_2UPTITLE, "div", this.oDomContainer)[0] || null; + + if (titleDiv) { + YAHOO.util.Event.purgeElement(titleDiv); + this.oDomContainer.removeChild(titleDiv); + } + if (! close) { + YAHOO.util.Dom.removeClass(this.oDomContainer, "withtitle"); + } } +}; - this.pageDate = new Date(year, month-1, 1); - this._pageDate = new Date(this.pageDate.getTime()); +/** +* Default handler for the "close" property +* @method configClose +*/ +YAHOO.widget.Calendar.prototype.configClose = function(type, args, obj) { + var close = args[0]; + var title = this.cfg.getProperty("title"); - if (selected) { - this.selectedDates = this._parseDates(selected); - this._selectedDates = this.selectedDates.concat(); + var linkClose; + + if (close === true) { + linkClose = YAHOO.util.Dom.getElementsByClassName("link-close", "a", this.oDomContainer)[0] || document.createElement("a"); + linkClose.href = "javascript:void(null);"; + linkClose.className = "link-close"; + YAHOO.util.Event.addListener(linkClose, "click", this.hide, this, true); + var imgClose = document.createElement("img"); + imgClose.src = YAHOO.widget.Calendar.IMG_ROOT + "us/my/bn/x_d.gif"; + imgClose.className = YAHOO.widget.CalendarGroup.CSS_2UPCLOSE; + linkClose.appendChild(imgClose); + this.oDomContainer.appendChild(linkClose); + YAHOO.util.Dom.addClass(this.oDomContainer, "withtitle"); } else { - this.selectedDates = new Array(); - this._selectedDates = new Array(); - } + linkClose = YAHOO.util.Dom.getElementsByClassName("link-close", "a", this.oDomContainer)[0] || null; - this.wireDefaultEvents(); - this.wireCustomEvents(); + if (linkClose) { + YAHOO.util.Event.purgeElement(linkClose); + this.oDomContainer.removeChild(linkClose); + } + if (! title || title === "") { + YAHOO.util.Dom.removeClass(this.oDomContainer, "withtitle"); + } + } }; - /** -* Wires the local DOM events for the Calendar, including cell selection, hover, and -* default navigation that is used for moving back and forth between calendar pages. +* Initializes Calendar's built-in CustomEvents +* @method initEvents */ -YAHOO.widget.Calendar_Core.prototype.wireDefaultEvents = function() { - +YAHOO.widget.Calendar.prototype.initEvents = function() { + /** - * The default event function that is attached to a date link within a calendar cell - * when the calendar is rendered. - * @param e The event - * @param cal A reference to the calendar passed by the Event utility + * Fired before a selection is made + * @event beforeSelectEvent */ - this.doSelectCell = function(e, cal) { - var cell = this; - var index = cell.index; - var d = cal.cellDates[index]; - var date = new Date(d[0],d[1]-1,d[2]); - - if (! cal.isDateOOM(date) && ! YAHOO.util.Dom.hasClass(cell, cal.Style.CSS_CELL_RESTRICTED) && ! YAHOO.util.Dom.hasClass(cell, cal.Style.CSS_CELL_OOB)) { - if (cal.Options.MULTI_SELECT) { - var link = cell.getElementsByTagName("A")[0]; + this.beforeSelectEvent = new YAHOO.util.CustomEvent("beforeSelect"); + + /** + * Fired when a selection is made + * @event selectEvent + * @param {Array} Array of Date field arrays in the format [YYYY, MM, DD]. + */ + this.selectEvent = new YAHOO.util.CustomEvent("select"); + + /** + * Fired before a selection is made + * @event beforeDeselectEvent + */ + this.beforeDeselectEvent = new YAHOO.util.CustomEvent("beforeDeselect"); + + /** + * Fired when a selection is made + * @event deselectEvent + * @param {Array} Array of Date field arrays in the format [YYYY, MM, DD]. + */ + this.deselectEvent = new YAHOO.util.CustomEvent("deselect"); + + /** + * Fired when the Calendar page is changed + * @event changePageEvent + */ + this.changePageEvent = new YAHOO.util.CustomEvent("changePage"); + + /** + * Fired before the Calendar is rendered + * @event beforeRenderEvent + */ + this.beforeRenderEvent = new YAHOO.util.CustomEvent("beforeRender"); + + /** + * Fired when the Calendar is rendered + * @event renderEvent + */ + this.renderEvent = new YAHOO.util.CustomEvent("render"); + + /** + * Fired when the Calendar is reset + * @event resetEvent + */ + this.resetEvent = new YAHOO.util.CustomEvent("reset"); + + /** + * Fired when the Calendar is cleared + * @event clearEvent + */ + this.clearEvent = new YAHOO.util.CustomEvent("clear"); + + this.beforeSelectEvent.subscribe(this.onBeforeSelect, this, true); + this.selectEvent.subscribe(this.onSelect, this, true); + this.beforeDeselectEvent.subscribe(this.onBeforeDeselect, this, true); + this.deselectEvent.subscribe(this.onDeselect, this, true); + this.changePageEvent.subscribe(this.onChangePage, this, true); + this.renderEvent.subscribe(this.onRender, this, true); + this.resetEvent.subscribe(this.onReset, this, true); + this.clearEvent.subscribe(this.onClear, this, true); +}; + + +/** +* The default event function that is attached to a date link within a calendar cell +* when the calendar is rendered. +* @method doSelectCell +* @param {DOMEvent} e The event +* @param {Calendar} cal A reference to the calendar passed by the Event utility +*/ +YAHOO.widget.Calendar.prototype.doSelectCell = function(e, cal) { + var target = YAHOO.util.Event.getTarget(e); + + var cell,index,d,date; + + while (target.tagName.toLowerCase() != "td" && ! YAHOO.util.Dom.hasClass(target, cal.Style.CSS_CELL_SELECTABLE)) { + target = target.parentNode; + if (target.tagName.toLowerCase() == "html") { + return; + } + } + + cell = target; + + if (YAHOO.util.Dom.hasClass(cell, cal.Style.CSS_CELL_SELECTABLE)) { + index = cell.id.split("cell")[1]; + d = cal.cellDates[index]; + date = new Date(d[0],d[1]-1,d[2]); + + var link; + + if (cal.Options.MULTI_SELECT) { + link = cell.getElementsByTagName("a")[0]; + if (link) { link.blur(); - - var cellDate = cal.cellDates[index]; - var cellDateIndex = cal._indexOfSelectedFieldArray(cellDate); - - if (cellDateIndex > -1) { - cal.deselectCell(index); - } else { - cal.selectCell(index); - } - + } + + var cellDate = cal.cellDates[index]; + var cellDateIndex = cal._indexOfSelectedFieldArray(cellDate); + + if (cellDateIndex > -1) { + cal.deselectCell(index); } else { - var link = cell.getElementsByTagName("A")[0]; - link.blur() cal.selectCell(index); } + + } else { + link = cell.getElementsByTagName("a")[0]; + if (link) { + link.blur(); + } + cal.selectCell(index); } } +}; - /** - * The event that is executed when the user hovers over a cell - * @param e The event - * @param cal A reference to the calendar passed by the Event utility - * @private - */ - this.doCellMouseOver = function(e, cal) { - var cell = this; - var index = cell.index; - var d = cal.cellDates[index]; - var date = new Date(d[0],d[1]-1,d[2]); +/** +* The event that is executed when the user hovers over a cell +* @method doCellMouseOver +* @param {DOMEvent} e The event +* @param {Calendar} cal A reference to the calendar passed by the Event utility +*/ +YAHOO.widget.Calendar.prototype.doCellMouseOver = function(e, cal) { + var target; + if (e) { + target = YAHOO.util.Event.getTarget(e); + } else { + target = this; + } - if (! cal.isDateOOM(date) && ! YAHOO.util.Dom.hasClass(cell, cal.Style.CSS_CELL_RESTRICTED) && ! YAHOO.util.Dom.hasClass(cell, cal.Style.CSS_CELL_OOB)) { - YAHOO.util.Dom.addClass(cell, cal.Style.CSS_CELL_HOVER); + while (target.tagName.toLowerCase() != "td") { + target = target.parentNode; + if (target.tagName.toLowerCase() == "html") { + return; } } + if (YAHOO.util.Dom.hasClass(target, cal.Style.CSS_CELL_SELECTABLE)) { + YAHOO.util.Dom.addClass(target, cal.Style.CSS_CELL_HOVER); + } +}; + +/** +* The event that is executed when the user moves the mouse out of a cell +* @method doCellMouseOut +* @param {DOMEvent} e The event +* @param {Calendar} cal A reference to the calendar passed by the Event utility +*/ +YAHOO.widget.Calendar.prototype.doCellMouseOut = function(e, cal) { + var target; + if (e) { + target = YAHOO.util.Event.getTarget(e); + } else { + target = this; + } + + while (target.tagName.toLowerCase() != "td") { + target = target.parentNode; + if (target.tagName.toLowerCase() == "html") { + return; + } + } + + if (YAHOO.util.Dom.hasClass(target, cal.Style.CSS_CELL_SELECTABLE)) { + YAHOO.util.Dom.removeClass(target, cal.Style.CSS_CELL_HOVER); + } +}; + +YAHOO.widget.Calendar.prototype.setupConfig = function() { + /** - * The event that is executed when the user moves the mouse out of a cell - * @param e The event - * @param cal A reference to the calendar passed by the Event utility - * @private + * The month/year representing the current visible Calendar date (mm/yyyy) + * @config pagedate + * @type String + * @default today's date */ - this.doCellMouseOut = function(e, cal) { - YAHOO.util.Dom.removeClass(this, cal.Style.CSS_CELL_HOVER); - } - + this.cfg.addProperty("pagedate", { value:new Date(), handler:this.configPageDate } ); + /** - * A wrapper event that executes the nextMonth method through a DOM event - * @param e The event - * @param cal A reference to the calendar passed by the Event utility - * @private - */ - this.doNextMonth = function(e, cal) { - cal.nextMonth(); - } + * The date or range of dates representing the current Calendar selection + * @config selected + * @type String + * @default [] + */ + this.cfg.addProperty("selected", { value:[], handler:this.configSelected } ); /** - * A wrapper event that executes the previousMonth method through a DOM event - * @param e The event - * @param cal A reference to the calendar passed by the Event utility + * The title to display above the Calendar's month header + * @config title + * @type String + * @default "" + */ + this.cfg.addProperty("title", { value:"", handler:this.configTitle } ); + + /** + * Whether or not a close button should be displayed for this Calendar + * @config close + * @type Boolean + * @default false + */ + this.cfg.addProperty("close", { value:false, handler:this.configClose } ); + + /** + * Whether or not an iframe shim should be placed under the Calendar to prevent select boxes from bleeding through in Internet Explorer 6 and below. + * @config iframe + * @type Boolean + * @default true + */ + this.cfg.addProperty("iframe", { value:true, handler:this.configIframe, validator:this.cfg.checkBoolean } ); + + /** + * The minimum selectable date in the current Calendar (mm/dd/yyyy) + * @config mindate + * @type String + * @default null + */ + this.cfg.addProperty("mindate", { value:null, handler:this.configMinDate } ); + + /** + * The maximum selectable date in the current Calendar (mm/dd/yyyy) + * @config maxdate + * @type String + * @default null + */ + this.cfg.addProperty("maxdate", { value:null, handler:this.configMaxDate } ); + + + // Options properties + + /** + * True if the Calendar should allow multiple selections. False by default. + * @config MULTI_SELECT + * @type Boolean + * @default false + */ + this.cfg.addProperty("MULTI_SELECT", { value:false, handler:this.configOptions, validator:this.cfg.checkBoolean } ); + + /** + * The weekday the week begins on. Default is 0 (Sunday). + * @config START_WEEKDAY + * @type number + * @default 0 + */ + this.cfg.addProperty("START_WEEKDAY", { value:0, handler:this.configOptions, validator:this.cfg.checkNumber } ); + + /** + * True if the Calendar should show weekday labels. True by default. + * @config SHOW_WEEKDAYS + * @type Boolean + * @default true + */ + this.cfg.addProperty("SHOW_WEEKDAYS", { value:true, handler:this.configOptions, validator:this.cfg.checkBoolean } ); + + /** + * True if the Calendar should show week row headers. False by default. + * @config SHOW_WEEK_HEADER + * @type Boolean + * @default false + */ + this.cfg.addProperty("SHOW_WEEK_HEADER",{ value:false, handler:this.configOptions, validator:this.cfg.checkBoolean } ); + + /** + * True if the Calendar should show week row footers. False by default. + * @config SHOW_WEEK_FOOTER + * @type Boolean + * @default false + */ + this.cfg.addProperty("SHOW_WEEK_FOOTER",{ value:false, handler:this.configOptions, validator:this.cfg.checkBoolean } ); + + /** + * True if the Calendar should suppress weeks that are not a part of the current month. False by default. + * @config HIDE_BLANK_WEEKS + * @type Boolean + * @default false + */ + this.cfg.addProperty("HIDE_BLANK_WEEKS",{ value:false, handler:this.configOptions, validator:this.cfg.checkBoolean } ); + + /** + * The image that should be used for the left navigation arrow. + * @config NAV_ARROW_LEFT + * @type String + * @default YAHOO.widget.Calendar.IMG_ROOT + "us/tr/callt.gif" + */ + this.cfg.addProperty("NAV_ARROW_LEFT", { value:YAHOO.widget.Calendar.IMG_ROOT + "us/tr/callt.gif", handler:this.configOptions } ); + + /** + * The image that should be used for the left navigation arrow. + * @config NAV_ARROW_RIGHT + * @type String + * @default YAHOO.widget.Calendar.IMG_ROOT + "us/tr/calrt.gif" + */ + this.cfg.addProperty("NAV_ARROW_RIGHT", { value:YAHOO.widget.Calendar.IMG_ROOT + "us/tr/calrt.gif", handler:this.configOptions } ); + + // Locale properties + + /** + * The short month labels for the current locale. + * @config MONTHS_SHORT + * @type String[] + * @default ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"] + */ + this.cfg.addProperty("MONTHS_SHORT", { value:["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"], handler:this.configLocale } ); + + /** + * The long month labels for the current locale. + * @config MONTHS_LONG + * @type String[] + * @default ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December" + */ + this.cfg.addProperty("MONTHS_LONG", { value:["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"], handler:this.configLocale } ); + + /** + * The 1-character weekday labels for the current locale. + * @config WEEKDAYS_1CHAR + * @type String[] + * @default ["S", "M", "T", "W", "T", "F", "S"] + */ + this.cfg.addProperty("WEEKDAYS_1CHAR", { value:["S", "M", "T", "W", "T", "F", "S"], handler:this.configLocale } ); + + /** + * The short weekday labels for the current locale. + * @config WEEKDAYS_SHORT + * @type String[] + * @default ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"] + */ + this.cfg.addProperty("WEEKDAYS_SHORT", { value:["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"], handler:this.configLocale } ); + + /** + * The medium weekday labels for the current locale. + * @config WEEKDAYS_MEDIUM + * @type String[] + * @default ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"] + */ + this.cfg.addProperty("WEEKDAYS_MEDIUM", { value:["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"], handler:this.configLocale } ); + + /** + * The long weekday labels for the current locale. + * @config WEEKDAYS_LONG + * @type String[] + * @default ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"] + */ + this.cfg.addProperty("WEEKDAYS_LONG", { value:["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"], handler:this.configLocale } ); + + /** + * Refreshes the locale values used to build the Calendar. + * @method refreshLocale * @private - */ - this.doPreviousMonth = function(e, cal) { - cal.previousMonth(); + */ + var refreshLocale = function() { + this.cfg.refireEvent("LOCALE_MONTHS"); + this.cfg.refireEvent("LOCALE_WEEKDAYS"); + }; + + this.cfg.subscribeToConfigEvent("START_WEEKDAY", refreshLocale, this, true); + this.cfg.subscribeToConfigEvent("MONTHS_SHORT", refreshLocale, this, true); + this.cfg.subscribeToConfigEvent("MONTHS_LONG", refreshLocale, this, true); + this.cfg.subscribeToConfigEvent("WEEKDAYS_1CHAR", refreshLocale, this, true); + this.cfg.subscribeToConfigEvent("WEEKDAYS_SHORT", refreshLocale, this, true); + this.cfg.subscribeToConfigEvent("WEEKDAYS_MEDIUM", refreshLocale, this, true); + this.cfg.subscribeToConfigEvent("WEEKDAYS_LONG", refreshLocale, this, true); + + /** + * The setting that determines which length of month labels should be used. Possible values are "short" and "long". + * @config LOCALE_MONTHS + * @type String + * @default "long" + */ + this.cfg.addProperty("LOCALE_MONTHS", { value:"long", handler:this.configLocaleValues } ); + + /** + * The setting that determines which length of weekday labels should be used. Possible values are "1char", "short", "medium", and "long". + * @config LOCALE_WEEKDAYS + * @type String + * @default "short" + */ + this.cfg.addProperty("LOCALE_WEEKDAYS", { value:"short", handler:this.configLocaleValues } ); + + /** + * The value used to delimit individual dates in a date string passed to various Calendar functions. + * @config DATE_DELIMITER + * @type String + * @default "," + */ + this.cfg.addProperty("DATE_DELIMITER", { value:",", handler:this.configLocale } ); + + /** + * The value used to delimit date fields in a date string passed to various Calendar functions. + * @config DATE_FIELD_DELIMITER + * @type String + * @default "/" + */ + this.cfg.addProperty("DATE_FIELD_DELIMITER",{ value:"/", handler:this.configLocale } ); + + /** + * The value used to delimit date ranges in a date string passed to various Calendar functions. + * @config DATE_RANGE_DELIMITER + * @type String + * @default "-" + */ + this.cfg.addProperty("DATE_RANGE_DELIMITER",{ value:"-", handler:this.configLocale } ); + + /** + * The position of the month in a month/year date string + * @config MY_MONTH_POSITION + * @type Number + * @default 1 + */ + this.cfg.addProperty("MY_MONTH_POSITION", { value:1, handler:this.configLocale, validator:this.cfg.checkNumber } ); + + /** + * The position of the year in a month/year date string + * @config MY_YEAR_POSITION + * @type Number + * @default 2 + */ + this.cfg.addProperty("MY_YEAR_POSITION", { value:2, handler:this.configLocale, validator:this.cfg.checkNumber } ); + + /** + * The position of the month in a month/day date string + * @config MD_MONTH_POSITION + * @type Number + * @default 1 + */ + this.cfg.addProperty("MD_MONTH_POSITION", { value:1, handler:this.configLocale, validator:this.cfg.checkNumber } ); + + /** + * The position of the day in a month/year date string + * @config MD_DAY_POSITION + * @type Number + * @default 2 + */ + this.cfg.addProperty("MD_DAY_POSITION", { value:2, handler:this.configLocale, validator:this.cfg.checkNumber } ); + + /** + * The position of the month in a month/day/year date string + * @config MDY_MONTH_POSITION + * @type Number + * @default 1 + */ + this.cfg.addProperty("MDY_MONTH_POSITION", { value:1, handler:this.configLocale, validator:this.cfg.checkNumber } ); + + /** + * The position of the day in a month/day/year date string + * @config MDY_DAY_POSITION + * @type Number + * @default 2 + */ + this.cfg.addProperty("MDY_DAY_POSITION", { value:2, handler:this.configLocale, validator:this.cfg.checkNumber } ); + + /** + * The position of the year in a month/day/year date string + * @config MDY_YEAR_POSITION + * @type Number + * @default 3 + */ + this.cfg.addProperty("MDY_YEAR_POSITION", { value:3, handler:this.configLocale, validator:this.cfg.checkNumber } ); +}; + +/** +* The default handler for the "pagedate" property +* @method configPageDate +*/ +YAHOO.widget.Calendar.prototype.configPageDate = function(type, args, obj) { + var val = args[0]; + var month, year, aMonthYear; + + if (val) { + if (val instanceof Date) { + val = YAHOO.widget.DateMath.findMonthStart(val); + this.cfg.setProperty("pagedate", val, true); + if (! this._pageDate) { + this._pageDate = this.cfg.getProperty("pagedate"); + } + return; + } else { + aMonthYear = val.split(this.cfg.getProperty("DATE_FIELD_DELIMITER")); + month = parseInt(aMonthYear[this.cfg.getProperty("MY_MONTH_POSITION")-1], 10)-1; + year = parseInt(aMonthYear[this.cfg.getProperty("MY_YEAR_POSITION")-1], 10); + } + } else { + month = this.today.getMonth(); + year = this.today.getFullYear(); } -} + this.cfg.setProperty("pagedate", new Date(year, month, 1), true); + if (! this._pageDate) { + this._pageDate = this.cfg.getProperty("pagedate"); + } +}; + /** -* This function can be extended by subclasses to attach additional DOM events to -* the calendar. By default, this method is unimplemented. +* The default handler for the "mindate" property +* @method configMinDate */ -YAHOO.widget.Calendar_Core.prototype.wireCustomEvents = function() { } +YAHOO.widget.Calendar.prototype.configMinDate = function(type, args, obj) { + var val = args[0]; + if (typeof val == 'string') { + val = this._parseDate(val); + this.cfg.setProperty("mindate", new Date(val[0],(val[1]-1),val[2])); + } +}; /** -This method is called to initialize the widget configuration variables, including -style, localization, and other display and behavioral options. -

Config: Container for the CSS style configuration variables.

-

Config.Style - Defines the CSS classes used for different calendar elements

-
-
CSS_CALENDAR : Container table
-
CSS_HEADER :
-
CSS_HEADER_TEXT : Calendar header
-
CSS_FOOTER : Calendar footer
-
CSS_CELL : Calendar day cell
-
CSS_CELL_OOM : Calendar OOM (out of month) cell
-
CSS_CELL_SELECTED : Calendar selected cell
-
CSS_CELL_RESTRICTED : Calendar restricted cell
-
CSS_CELL_TODAY : Calendar cell for today's date
-
CSS_ROW_HEADER : The cell preceding a row (used for week number by default)
-
CSS_ROW_FOOTER : The cell following a row (not implemented by default)
-
CSS_WEEKDAY_CELL : The cells used for labeling weekdays
-
CSS_WEEKDAY_ROW : The row containing the weekday label cells
-
CSS_CONTAINER : The border style used for the default UED rendering
-
CSS_2UPWRAPPER : Special container class used to properly adjust the sizing and float
-
CSS_NAV_LEFT : Left navigation arrow
-
CSS_NAV_RIGHT : Right navigation arrow
-
CSS_CELL_TOP : Outlying cell along the top row
-
CSS_CELL_LEFT : Outlying cell along the left row
-
CSS_CELL_RIGHT : Outlying cell along the right row
-
CSS_CELL_BOTTOM : Outlying cell along the bottom row
-
CSS_CELL_HOVER : Cell hover style
-
CSS_CELL_HIGHLIGHT1 : Highlight color 1 for styling cells
-
CSS_CELL_HIGHLIGHT2 : Highlight color 2 for styling cells
-
CSS_CELL_HIGHLIGHT3 : Highlight color 3 for styling cells
-
CSS_CELL_HIGHLIGHT4 : Highlight color 4 for styling cells
+* The default handler for the "maxdate" property +* @method configMaxDate +*/ +YAHOO.widget.Calendar.prototype.configMaxDate = function(type, args, obj) { + var val = args[0]; + if (typeof val == 'string') { + val = this._parseDate(val); + this.cfg.setProperty("maxdate", new Date(val[0],(val[1]-1),val[2])); + } +}; -
-

Config.Locale - Defines the locale string arrays used for localization

-
-
MONTHS_SHORT : Array of 12 months in short format ("Jan", "Feb", etc.)
-
MONTHS_LONG : Array of 12 months in short format ("Jan", "Feb", etc.)
-
WEEKDAYS_1CHAR : Array of 7 days in 1-character format ("S", "M", etc.)
-
WEEKDAYS_SHORT : Array of 7 days in short format ("Su", "Mo", etc.)
-
WEEKDAYS_MEDIUM : Array of 7 days in medium format ("Sun", "Mon", etc.)
-
WEEKDAYS_LONG : Array of 7 days in long format ("Sunday", "Monday", etc.)
-
DATE_DELIMITER : The value used to delimit series of multiple dates (Default: ",")
-
DATE_FIELD_DELIMITER : The value used to delimit date fields (Default: "/")
-
DATE_RANGE_DELIMITER : The value used to delimit date fields (Default: "-")
-
MY_MONTH_POSITION : The value used to determine the position of the month in a month/year combo (e.g. 12/2005) (Default: 1)
-
MY_YEAR_POSITION : The value used to determine the position of the year in a month/year combo (e.g. 12/2005) (Default: 2)
-
MD_MONTH_POSITION : The value used to determine the position of the month in a month/day combo (e.g. 12/25) (Default: 1)
-
MD_DAY_POSITION : The value used to determine the position of the day in a month/day combo (e.g. 12/25) (Default: 2)
-
MDY_MONTH_POSITION : The value used to determine the position of the month in a month/day/year combo (e.g. 12/25/2005) (Default: 1)
-
MDY_DAY_POSITION : The value used to determine the position of the day in a month/day/year combo (e.g. 12/25/2005) (Default: 2)
-
MDY_YEAR_POSITION : The value used to determine the position of the year in a month/day/year combo (e.g. 12/25/2005) (Default: 3)
-
-

Config.Options - Defines other configurable calendar widget options

-
-
SHOW_WEEKDAYS : Boolean, determines whether to display the weekday headers (defaults to true)
-
LOCALE_MONTHS : Array, points to the desired Config.Locale array (defaults to Config.Locale.MONTHS_LONG)
-
LOCALE_WEEKDAYS : Array, points to the desired Config.Locale array (defaults to Config.Locale.WEEKDAYS_SHORT)
-
START_WEEKDAY : Integer, 0-6, representing the day that a week begins on
-
SHOW_WEEK_HEADER : Boolean, determines whether to display row headers
-
SHOW_WEEK_FOOTER : Boolean, determines whether to display row footers
-
HIDE_BLANK_WEEKS : Boolean, determines whether to hide extra weeks that are completely OOM
-
NAV_ARROW_LEFT : String, the image path used for the left navigation arrow
-
NAV_ARROW_RIGHT : String, the image path used for the right navigation arrow
-
+/** +* The default handler for the "selected" property +* @method configSelected */ -YAHOO.widget.Calendar_Core.prototype.setupConfig = function() { +YAHOO.widget.Calendar.prototype.configSelected = function(type, args, obj) { + var selected = args[0]; + + if (selected) { + if (typeof selected == 'string') { + this.cfg.setProperty("selected", this._parseDates(selected), true); + } + } + if (! this._selectedDates) { + this._selectedDates = this.cfg.getProperty("selected"); + } +}; + +/** +* The default handler for all configuration options properties +* @method configOptions +*/ +YAHOO.widget.Calendar.prototype.configOptions = function(type, args, obj) { + type = type.toUpperCase(); + var val = args[0]; + this.Options[type] = val; +}; + +/** +* The default handler for all configuration locale properties +* @method configLocale +*/ +YAHOO.widget.Calendar.prototype.configLocale = function(type, args, obj) { + type = type.toUpperCase(); + var val = args[0]; + this.Locale[type] = val; + + this.cfg.refireEvent("LOCALE_MONTHS"); + this.cfg.refireEvent("LOCALE_WEEKDAYS"); + +}; + +/** +* The default handler for all configuration locale field length properties +* @method configLocaleValues +*/ +YAHOO.widget.Calendar.prototype.configLocaleValues = function(type, args, obj) { + type = type.toUpperCase(); + var val = args[0]; + + switch (type) { + case "LOCALE_MONTHS": + switch (val) { + case "short": + this.Locale.LOCALE_MONTHS = this.cfg.getProperty("MONTHS_SHORT").concat(); + break; + case "long": + this.Locale.LOCALE_MONTHS = this.cfg.getProperty("MONTHS_LONG").concat(); + break; + } + break; + case "LOCALE_WEEKDAYS": + switch (val) { + case "1char": + this.Locale.LOCALE_WEEKDAYS = this.cfg.getProperty("WEEKDAYS_1CHAR").concat(); + break; + case "short": + this.Locale.LOCALE_WEEKDAYS = this.cfg.getProperty("WEEKDAYS_SHORT").concat(); + break; + case "medium": + this.Locale.LOCALE_WEEKDAYS = this.cfg.getProperty("WEEKDAYS_MEDIUM").concat(); + break; + case "long": + this.Locale.LOCALE_WEEKDAYS = this.cfg.getProperty("WEEKDAYS_LONG").concat(); + break; + } + + var START_WEEKDAY = this.cfg.getProperty("START_WEEKDAY"); + + if (START_WEEKDAY > 0) { + for (var w=0;w 0) { - for (var w=0;w -* this.Config.Style.CSS_CELL = "newcalcell"; -* this.Config.Locale.MONTHS_SHORT = ["Jan", "Fv", "Mars", "Avr", "Mai", "Juin", "Juil", "Aot", "Sept", "Oct", "Nov", "Dc"]; -* -*/ -YAHOO.widget.Calendar_Core.prototype.customConfig = function() { }; - -/** * Builds the date label that will be displayed in the calendar header or * footer, depending on configuration. -* @return The formatted calendar month label -* @type String +* @method buildMonthLabel +* @return {String} The formatted calendar month label */ -YAHOO.widget.Calendar_Core.prototype.buildMonthLabel = function() { - var text = this.Options.LOCALE_MONTHS[this.pageDate.getMonth()] + " " + this.pageDate.getFullYear(); +YAHOO.widget.Calendar.prototype.buildMonthLabel = function() { + var text = this.Locale.LOCALE_MONTHS[this.cfg.getProperty("pagedate").getMonth()] + " " + this.cfg.getProperty("pagedate").getFullYear(); return text; }; /** * Builds the date digit that will be displayed in calendar cells -* @return The formatted day label -* @type String +* @method buildDayLabel +* @param {Date} workingDate The current working date +* @return {String} The formatted day label */ -YAHOO.widget.Calendar_Core.prototype.buildDayLabel = function(workingDate) { +YAHOO.widget.Calendar.prototype.buildDayLabel = function(workingDate) { var day = workingDate.getDate(); return day; }; - - /** -* Builds the calendar table shell that will be filled in with dates and formatting. -* This method calls buildShellHeader, buildShellBody, and buildShellFooter (in that order) -* to construct the pieces of the calendar table. The construction of the shell should -* only happen one time when the calendar is initialized. +* Renders the calendar header. +* @method renderHeader +* @param {Array} html The current working HTML array +* @return {Array} The current working HTML array */ -YAHOO.widget.Calendar_Core.prototype.buildShell = function() { - - this.table = document.createElement("TABLE"); - this.table.cellSpacing = 0; - YAHOO.widget.Calendar_Core.setCssClasses(this.table, [this.Style.CSS_CALENDAR]); - - this.table.id = this.id; - - this.buildShellHeader(); - this.buildShellBody(); - this.buildShellFooter(); - - YAHOO.util.Event.addListener(window, "unload", this._unload, this); -}; - -/** -* Builds the calendar shell header by inserting a THEAD into the local calendar table. -*/ -YAHOO.widget.Calendar_Core.prototype.buildShellHeader = function() { - var head = document.createElement("THEAD"); - var headRow = document.createElement("TR"); - - var headerCell = document.createElement("TH"); - +YAHOO.widget.Calendar.prototype.renderHeader = function(html) { var colSpan = 7; - if (this.Config.Options.SHOW_WEEK_HEADER) { - this.weekHeaderCells = new Array(); + + if (this.cfg.getProperty("SHOW_WEEK_HEADER")) { colSpan += 1; } - if (this.Config.Options.SHOW_WEEK_FOOTER) { - this.weekFooterCells = new Array(); + + if (this.cfg.getProperty("SHOW_WEEK_FOOTER")) { colSpan += 1; - } - - headerCell.colSpan = colSpan; - - YAHOO.widget.Calendar_Core.setCssClasses(headerCell,[this.Style.CSS_HEADER_TEXT]); + } - this.headerCell = headerCell; + html[html.length] = ""; + html[html.length] = ""; + html[html.length] = ''; + html[html.length] = '
'; - headRow.appendChild(headerCell); - head.appendChild(headRow); + var renderLeft, renderRight = false; - // Append day labels, if needed - if (this.Options.SHOW_WEEKDAYS) { - var row = document.createElement("TR"); - var fillerCell; - - YAHOO.widget.Calendar_Core.setCssClasses(row,[this.Style.CSS_WEEKDAY_ROW]); - - if (this.Config.Options.SHOW_WEEK_HEADER) { - fillerCell = document.createElement("TH"); - YAHOO.widget.Calendar_Core.setCssClasses(fillerCell,[this.Style.CSS_WEEKDAY_CELL]); - row.appendChild(fillerCell); + if (this.parent) { + if (this.index === 0) { + renderLeft = true; + } + if (this.index == (this.parent.cfg.getProperty("pages") -1)) { + renderRight = true; + } + } else { + renderLeft = true; + renderRight = true; } - - for(var i=0;i '; } - - head.appendChild(row); - } - this.table.appendChild(head); -}; + html[html.length] = this.buildMonthLabel(); -/** -* Builds the calendar shell body (6 weeks by 7 days) -*/ -YAHOO.widget.Calendar_Core.prototype.buildShellBody = function() { - // This should only get executed once - this.tbody = document.createElement("TBODY"); + if (renderRight) { + html[html.length] = ' '; + } - for (var r=0;r<6;++r) { - var row = document.createElement("TR"); - - for (var c=0;c'; - this.cellDates.length = 0; + if (this.cfg.getProperty("SHOW_WEEK_HEADER")) { + html[html.length] = ' '; + } - // Find starting day of the current month - var workingDate = YAHOO.widget.DateMath.findMonthStart(this.pageDate); + for(var i=0;i'; + } - this.renderHeader(); - this.renderBody(workingDate); - this.renderFooter(); + if (this.cfg.getProperty("SHOW_WEEK_FOOTER")) { + html[html.length] = ' '; + } - this.onRender(); -}; + html[html.length] = ''; - - -/** -* Appends the header contents into the widget header. -*/ -YAHOO.widget.Calendar_Core.prototype.renderHeader = function() { - this.headerCell.innerHTML = ""; - - var headerContainer = document.createElement("DIV"); - headerContainer.className = this.Style.CSS_HEADER; - - headerContainer.appendChild(document.createTextNode(this.buildMonthLabel())); - - this.headerCell.appendChild(headerContainer); + return html; }; /** -* Appends the calendar body. The default implementation calculates the number of -* OOM (out of month) cells that need to be rendered at the start of the month, renders those, -* and renders all the day cells using the built-in cell rendering methods. -* -* While iterating through all of the cells, the calendar checks for renderers in the -* local render stack that match the date of the current cell, and then applies styles -* as necessary. -* -* @param {Date} workingDate The current working Date object being used to generate the calendar +* Renders the calendar body. +* @method renderBody +* @param {Date} workingDate The current working Date being used for the render process +* @param {Array} html The current working HTML array +* @return {Array} The current working HTML array */ -YAHOO.widget.Calendar_Core.prototype.renderBody = function(workingDate) { +YAHOO.widget.Calendar.prototype.renderBody = function(workingDate, html) { + var startDay = this.cfg.getProperty("START_WEEKDAY"); + this.preMonthDays = workingDate.getDay(); - if (this.Options.START_WEEKDAY > 0) { - this.preMonthDays -= this.Options.START_WEEKDAY; + if (startDay > 0) { + this.preMonthDays -= startDay; } if (this.preMonthDays < 0) { this.preMonthDays += 7; } - + this.monthDays = YAHOO.widget.DateMath.findMonthEnd(workingDate).getDate(); - this.postMonthDays = YAHOO.widget.Calendar_Core.DISPLAY_DAYS-this.preMonthDays-this.monthDays; - + this.postMonthDays = YAHOO.widget.Calendar.DISPLAY_DAYS-this.preMonthDays-this.monthDays; + workingDate = YAHOO.widget.DateMath.subtract(workingDate, YAHOO.widget.DateMath.DAY, this.preMonthDays); - - var weekRowIndex = 0; - - for (var c=0;c'; - + var i = 0; - var renderer = null; - - if (workingDate.getFullYear() == this.today.getFullYear() && - workingDate.getMonth() == this.today.getMonth() && - workingDate.getDate() == this.today.getDate()) { - cellRenderers[cellRenderers.length]=this.renderCellStyleToday; - } - - if (this.isDateOOM(workingDate)) { - cellRenderers[cellRenderers.length]=this.renderCellNotThisMonth; + var tempDiv = document.createElement("div"); + var cell = document.createElement("td"); + tempDiv.appendChild(cell); + + var jan1 = new Date(useDate.getFullYear(),0,1); + + var cal = this.parent || this; + + for (var r=0;r<6;r++) { + + weekNum = YAHOO.widget.DateMath.getWeekNumber(workingDate, useDate.getFullYear(), startDay); + + weekClass = "w" + weekNum; + + if (r !== 0 && this.isDateOOM(workingDate) && this.cfg.getProperty("HIDE_BLANK_WEEKS") === true) { + break; } else { - for (var r=0;r'; - if (workingDate.getMonth()+1 == month && workingDate.getDate() == day && workingDate.getFullYear() == year) { - renderer = rArray[2]; - this.renderStack.splice(r,1); + if (this.cfg.getProperty("SHOW_WEEK_HEADER")) { html = this.renderRowHeader(weekNum, html); } + + for (var d=0;d<7;d++){ // Render actual days + + var cellRenderers = []; + + this.clearElement(cell); + + YAHOO.util.Dom.addClass(cell, "calcell"); + + cell.id = this.id + "_cell" + i; + + cell.innerHTML = i; + + var renderer = null; + + if (workingDate.getFullYear() == this.today.getFullYear() && + workingDate.getMonth() == this.today.getMonth() && + workingDate.getDate() == this.today.getDate()) { + cellRenderers[cellRenderers.length]=cal.renderCellStyleToday; + } + + this.cellDates[this.cellDates.length]=[workingDate.getFullYear(),workingDate.getMonth()+1,workingDate.getDate()]; // Add this date to cellDates + + if (this.isDateOOM(workingDate)) { + cellRenderers[cellRenderers.length]=cal.renderCellNotThisMonth; + } else { + + YAHOO.util.Dom.addClass(cell, "wd" + workingDate.getDay()); + YAHOO.util.Dom.addClass(cell, "d" + workingDate.getDate()); + + for (var s=0;s= d1.getTime() && workingDate.getTime() <= d2.getTime()) { + renderer = rArray[2]; + + if (workingDate.getTime()==d2.getTime()) { + this.renderStack.splice(s,1); + } + } + break; + case YAHOO.widget.Calendar.WEEKDAY: + + var weekday = rArray[1][0]; + if (workingDate.getDay()+1 == weekday) { + renderer = rArray[2]; + } + break; + case YAHOO.widget.Calendar.MONTH: + + month = rArray[1][0]; + if (workingDate.getMonth()+1 == month) { + renderer = rArray[2]; + } + break; } - break; - case YAHOO.widget.Calendar_Core.MONTH_DAY: - month = rArray[1][0]; - day = rArray[1][1]; - - if (workingDate.getMonth()+1 == month && workingDate.getDate() == day) { - renderer = rArray[2]; - this.renderStack.splice(r,1); + + if (renderer) { + cellRenderers[cellRenderers.length]=renderer; } - break; - case YAHOO.widget.Calendar_Core.RANGE: - var date1 = rArray[1][0]; - var date2 = rArray[1][1]; + } - var d1month = date1[1]; - var d1day = date1[2]; - var d1year = date1[0]; - - var d1 = new Date(d1year, d1month-1, d1day); + } - var d2month = date2[1]; - var d2day = date2[2]; - var d2year = date2[0]; + if (this._indexOfSelectedFieldArray([workingDate.getFullYear(),workingDate.getMonth()+1,workingDate.getDate()]) > -1) { + cellRenderers[cellRenderers.length]=cal.renderCellStyleSelected; + } - var d2 = new Date(d2year, d2month-1, d2day); + var mindate = this.cfg.getProperty("mindate"); + var maxdate = this.cfg.getProperty("maxdate"); - if (workingDate.getTime() >= d1.getTime() && workingDate.getTime() <= d2.getTime()) { - renderer = rArray[2]; + if (mindate) { + mindate = YAHOO.widget.DateMath.clearTime(mindate); + } + if (maxdate) { + maxdate = YAHOO.widget.DateMath.clearTime(maxdate); + } - if (workingDate.getTime()==d2.getTime()) { - this.renderStack.splice(r,1); - } - } + if ( + (mindate && (workingDate.getTime() < mindate.getTime())) || + (maxdate && (workingDate.getTime() > maxdate.getTime())) + ) { + cellRenderers[cellRenderers.length]=cal.renderOutOfBoundsDate; + } else { + cellRenderers[cellRenderers.length]=cal.styleCellDefault; + cellRenderers[cellRenderers.length]=cal.renderCellDefault; + } + + + + for (var x=0;x= 0 && i <= 6) { + YAHOO.util.Dom.addClass(cell, this.Style.CSS_CELL_TOP); } - } + if ((i % 7) === 0) { + YAHOO.util.Dom.addClass(cell, this.Style.CSS_CELL_LEFT); + } + if (((i+1) % 7) === 0) { + YAHOO.util.Dom.addClass(cell, this.Style.CSS_CELL_RIGHT); + } - } + var postDays = this.postMonthDays; + if (postDays >= 7 && this.cfg.getProperty("HIDE_BLANK_WEEKS")) { + var blankWeeks = Math.floor(postDays/7); + for (var p=0;p -1) { - cellRenderers[cellRenderers.length]=this.renderCellStyleSelected; - } + if (i >= ((this.preMonthDays+postDays+this.monthDays)-7)) { + YAHOO.util.Dom.addClass(cell, this.Style.CSS_CELL_BOTTOM); + } - if (this.minDate) { - this.minDate = YAHOO.widget.DateMath.clearTime(this.minDate); - } - if (this.maxDate) { - this.maxDate = YAHOO.widget.DateMath.clearTime(this.maxDate); - } + html[html.length] = tempDiv.innerHTML; - if ( - (this.minDate && (workingDate.getTime() < this.minDate.getTime())) || - (this.maxDate && (workingDate.getTime() > this.maxDate.getTime())) - ) { - cellRenderers[cellRenderers.length]=this.renderOutOfBoundsDate; - } else { - cellRenderers[cellRenderers.length]=this.renderCellDefault; - } - - for (var x=0;x= 0 && c <= 6) { - YAHOO.util.Dom.addClass(cell, this.Style.CSS_CELL_TOP); + html[html.length] = ''; } - if ((c % 7) == 0) { - YAHOO.util.Dom.addClass(cell, this.Style.CSS_CELL_LEFT); - } - if (((c+1) % 7) == 0) { - YAHOO.util.Dom.addClass(cell, this.Style.CSS_CELL_RIGHT); - } - - var postDays = this.postMonthDays; - if (postDays >= 7 && this.Options.HIDE_BLANK_WEEKS) { - var blankWeeks = Math.floor(postDays/7); - for (var p=0;p'; + html = this.renderHeader(html); + html = this.renderBody(workingDate, html); + html = this.renderFooter(html); + html[html.length] = ''; + + this.oDomContainer.innerHTML = html.join("\n"); + + this.applyListeners(); + this.cells = this.oDomContainer.getElementsByTagName("td"); + + this.cfg.refireEvent("title"); + this.cfg.refireEvent("close"); + this.cfg.refireEvent("iframe"); + + this.renderEvent.fire(); +}; + +/** +* Applies the Calendar's DOM listeners to applicable elements. +* @method applyListeners +*/ +YAHOO.widget.Calendar.prototype.applyListeners = function() { + + var root = this.oDomContainer; + var cal = this.parent || this; + + var linkLeft, linkRight; + + linkLeft = YAHOO.util.Dom.getElementsByClassName(this.Style.CSS_NAV_LEFT, "a", root); + linkRight = YAHOO.util.Dom.getElementsByClassName(this.Style.CSS_NAV_RIGHT, "a", root); + + if (linkLeft) { + this.linkLeft = linkLeft[0]; + YAHOO.util.Event.addListener(this.linkLeft, "mousedown", cal.previousMonth, cal, true); + } + + if (linkRight) { + this.linkRight = linkRight[0]; + YAHOO.util.Event.addListener(this.linkRight, "mousedown", cal.nextMonth, cal, true); + } + + if (this.domEventMap) { + var el,elements; + for (var cls in this.domEventMap) { + if (this.domEventMap.hasOwnProperty(cls)) { + var items = this.domEventMap[cls]; + + if (! (items instanceof Array)) { + items = [items]; + } + + for (var i=0;i= ((this.preMonthDays+postDays+this.monthDays)-7)) { - YAHOO.util.Dom.addClass(cell, this.Style.CSS_CELL_BOTTOM); - } } - + + YAHOO.util.Event.addListener(this.oDomContainer, "click", this.doSelectCell, this); + YAHOO.util.Event.addListener(this.oDomContainer, "mouseover", this.doCellMouseOver, this); + YAHOO.util.Event.addListener(this.oDomContainer, "mouseout", this.doCellMouseOut, this); }; /** -* Appends the contents of the calendar widget footer into the shell. By default, -* the calendar does not contain a footer, and this method must be implemented by -* subclassing the widget. +* Retrieves the Date object for the specified Calendar cell +* @method getDateByCellId +* @param {String} id The id of the cell +* @return {Date} The Date object for the specified Calendar cell */ -YAHOO.widget.Calendar_Core.prototype.renderFooter = function() { }; +YAHOO.widget.Calendar.prototype.getDateByCellId = function(id) { + var date = this.getDateFieldsByCellId(id); + return new Date(date[0],date[1]-1,date[2]); +}; /** -* @private +* Retrieves the Date object for the specified Calendar cell +* @method getDateFieldsByCellId +* @param {String} id The id of the cell +* @return {Array} The array of Date fields for the specified Calendar cell */ -YAHOO.widget.Calendar_Core.prototype._unload = function(e, cal) { - for (var c in cal.cells) { - c = null; - } - - cal.cells = null; - - cal.tbody = null; - cal.oDomContainer = null; - cal.table = null; - cal.headerCell = null; - - cal = null; +YAHOO.widget.Calendar.prototype.getDateFieldsByCellId = function(id) { + id = id.toLowerCase().split("_cell")[1]; + id = parseInt(id, 10); + return this.cellDates[id]; }; - - -/****************** BEGIN BUILT-IN TABLE CELL RENDERERS ************************************/ -YAHOO.widget.Calendar_Core.prototype.renderOutOfBoundsDate = function(workingDate, cell) { +// BEGIN BUILT-IN TABLE CELL RENDERERS + +/** +* Renders a cell that falls before the minimum date or after the maximum date. +* widget class. +* @method renderOutOfBoundsDate +* @param {Date} workingDate The current working Date object being used to generate the calendar +* @param {HTMLTableCellElement} cell The current working cell in the calendar +* @return {String} YAHOO.widget.Calendar.STOP_RENDER if rendering should stop with this style, null or nothing if rendering +* should not be terminated +*/ +YAHOO.widget.Calendar.prototype.renderOutOfBoundsDate = function(workingDate, cell) { YAHOO.util.Dom.addClass(cell, this.Style.CSS_CELL_OOB); cell.innerHTML = workingDate.getDate(); - return YAHOO.widget.Calendar_Core.STOP_RENDER; -} + return YAHOO.widget.Calendar.STOP_RENDER; +}; /** -* Renders the row header for a week. The date passed in should be -* the first date of the given week. -* @param {Date} workingDate The current working Date object (beginning of the week) being used to generate the calendar -* @param {HTMLTableCellElement} cell The current working cell in the calendar +* Renders the row header for a week. +* @method renderRowHeader +* @param {Number} weekNum The week number of the current row +* @param {Array} cell The current working HTML array */ -YAHOO.widget.Calendar_Core.prototype.renderRowHeader = function(workingDate, cell) { - YAHOO.util.Dom.addClass(cell, this.Style.CSS_ROW_HEADER); - - var useYear = this.pageDate.getFullYear(); - - if (! YAHOO.widget.DateMath.isYearOverlapWeek(workingDate)) { - useYear = workingDate.getFullYear(); - } - - var weekNum = YAHOO.widget.DateMath.getWeekNumber(workingDate, useYear, this.Options.START_WEEKDAY); - cell.innerHTML = weekNum; - - if (this.isDateOOM(workingDate) && ! YAHOO.widget.DateMath.isMonthOverlapWeek(workingDate)) { - YAHOO.util.Dom.addClass(cell, this.Style.CSS_CELL_OOM); - } +YAHOO.widget.Calendar.prototype.renderRowHeader = function(weekNum, html) { + html[html.length] = '' + weekNum + ''; + return html; }; /** -* Renders the row footer for a week. The date passed in should be -* the first date of the given week. -* @param {Date} workingDate The current working Date object (beginning of the week) being used to generate the calendar -* @param {HTMLTableCellElement} cell The current working cell in the calendar +* Renders the row footer for a week. +* @method renderRowFooter +* @param {Number} weekNum The week number of the current row +* @param {Array} cell The current working HTML array */ -YAHOO.widget.Calendar_Core.prototype.renderRowFooter = function(workingDate, cell) { - YAHOO.util.Dom.addClass(cell, this.Style.CSS_ROW_FOOTER); - - if (this.isDateOOM(workingDate) && ! YAHOO.widget.DateMath.isMonthOverlapWeek(workingDate)) { - YAHOO.util.Dom.addClass(cell, this.Style.CSS_CELL_OOM); - } +YAHOO.widget.Calendar.prototype.renderRowFooter = function(weekNum, html) { + html[html.length] = '' + weekNum + ''; + return html; }; /** * Renders a single standard calendar cell in the calendar widget table. -* All logic for determining how a standard default cell will be rendered is +* All logic for determining how a standard default cell will be rendered is * encapsulated in this method, and must be accounted for when extending the * widget class. +* @method renderCellDefault * @param {Date} workingDate The current working Date object being used to generate the calendar * @param {HTMLTableCellElement} cell The current working cell in the calendar -* @return YAHOO.widget.Calendar_Core.STOP_RENDER if rendering should stop with this style, null or nothing if rendering -* should not be terminated -* @type String */ -YAHOO.widget.Calendar_Core.prototype.renderCellDefault = function(workingDate, cell) { - cell.innerHTML = ""; - var link = document.createElement("a"); +YAHOO.widget.Calendar.prototype.renderCellDefault = function(workingDate, cell) { + cell.innerHTML = '' + this.buildDayLabel(workingDate) + ""; +}; - link.href="javascript:void(null);"; - link.name=this.id+"__"+workingDate.getFullYear()+"_"+(workingDate.getMonth()+1)+"_"+workingDate.getDate(); - - link.appendChild(document.createTextNode(this.buildDayLabel(workingDate))); - cell.appendChild(link); +/** +* Styles a selectable cell. +* @method styleCellDefault +* @param {Date} workingDate The current working Date object being used to generate the calendar +* @param {HTMLTableCellElement} cell The current working cell in the calendar +*/ +YAHOO.widget.Calendar.prototype.styleCellDefault = function(workingDate, cell) { + YAHOO.util.Dom.addClass(cell, this.Style.CSS_CELL_SELECTABLE); }; + /** * Renders a single standard calendar cell using the CSS hightlight1 style +* @method renderCellStyleHighlight1 * @param {Date} workingDate The current working Date object being used to generate the calendar * @param {HTMLTableCellElement} cell The current working cell in the calendar -* @return YAHOO.widget.Calendar_Core.STOP_RENDER if rendering should stop with this style, null or nothing if rendering -* should not be terminated -* @type String */ -YAHOO.widget.Calendar_Core.prototype.renderCellStyleHighlight1 = function(workingDate, cell) { +YAHOO.widget.Calendar.prototype.renderCellStyleHighlight1 = function(workingDate, cell) { YAHOO.util.Dom.addClass(cell, this.Style.CSS_CELL_HIGHLIGHT1); }; /** * Renders a single standard calendar cell using the CSS hightlight2 style +* @method renderCellStyleHighlight2 * @param {Date} workingDate The current working Date object being used to generate the calendar * @param {HTMLTableCellElement} cell The current working cell in the calendar -* @return YAHOO.widget.Calendar_Core.STOP_RENDER if rendering should stop with this style, null or nothing if rendering -* should not be terminated -* @type String */ -YAHOO.widget.Calendar_Core.prototype.renderCellStyleHighlight2 = function(workingDate, cell) { +YAHOO.widget.Calendar.prototype.renderCellStyleHighlight2 = function(workingDate, cell) { YAHOO.util.Dom.addClass(cell, this.Style.CSS_CELL_HIGHLIGHT2); }; /** * Renders a single standard calendar cell using the CSS hightlight3 style +* @method renderCellStyleHighlight3 * @param {Date} workingDate The current working Date object being used to generate the calendar * @param {HTMLTableCellElement} cell The current working cell in the calendar -* @return YAHOO.widget.Calendar_Core.STOP_RENDER if rendering should stop with this style, null or nothing if rendering -* should not be terminated -* @type String */ -YAHOO.widget.Calendar_Core.prototype.renderCellStyleHighlight3 = function(workingDate, cell) { +YAHOO.widget.Calendar.prototype.renderCellStyleHighlight3 = function(workingDate, cell) { YAHOO.util.Dom.addClass(cell, this.Style.CSS_CELL_HIGHLIGHT3); }; /** * Renders a single standard calendar cell using the CSS hightlight4 style +* @method renderCellStyleHighlight4 * @param {Date} workingDate The current working Date object being used to generate the calendar * @param {HTMLTableCellElement} cell The current working cell in the calendar -* @return YAHOO.widget.Calendar_Core.STOP_RENDER if rendering should stop with this style, null or nothing if rendering -* should not be terminated -* @type String */ -YAHOO.widget.Calendar_Core.prototype.renderCellStyleHighlight4 = function(workingDate, cell) { +YAHOO.widget.Calendar.prototype.renderCellStyleHighlight4 = function(workingDate, cell) { YAHOO.util.Dom.addClass(cell, this.Style.CSS_CELL_HIGHLIGHT4); }; /** * Applies the default style used for rendering today's date to the current calendar cell +* @method renderCellStyleToday * @param {Date} workingDate The current working Date object being used to generate the calendar * @param {HTMLTableCellElement} cell The current working cell in the calendar -* @return YAHOO.widget.Calendar_Core.STOP_RENDER if rendering should stop with this style, null or nothing if rendering -* should not be terminated -* @type String */ -YAHOO.widget.Calendar_Core.prototype.renderCellStyleToday = function(workingDate, cell) { +YAHOO.widget.Calendar.prototype.renderCellStyleToday = function(workingDate, cell) { YAHOO.util.Dom.addClass(cell, this.Style.CSS_CELL_TODAY); }; /** * Applies the default style used for rendering selected dates to the current calendar cell +* @method renderCellStyleSelected * @param {Date} workingDate The current working Date object being used to generate the calendar * @param {HTMLTableCellElement} cell The current working cell in the calendar -* @return YAHOO.widget.Calendar_Core.STOP_RENDER if rendering should stop with this style, null or nothing if rendering +* @return {String} YAHOO.widget.Calendar.STOP_RENDER if rendering should stop with this style, null or nothing if rendering * should not be terminated -* @type String */ -YAHOO.widget.Calendar_Core.prototype.renderCellStyleSelected = function(workingDate, cell) { +YAHOO.widget.Calendar.prototype.renderCellStyleSelected = function(workingDate, cell) { YAHOO.util.Dom.addClass(cell, this.Style.CSS_CELL_SELECTED); }; /** * Applies the default style used for rendering dates that are not a part of the current * month (preceding or trailing the cells for the current month) +* @method renderCellNotThisMonth * @param {Date} workingDate The current working Date object being used to generate the calendar * @param {HTMLTableCellElement} cell The current working cell in the calendar -* @return YAHOO.widget.Calendar_Core.STOP_RENDER if rendering should stop with this style, null or nothing if rendering +* @return {String} YAHOO.widget.Calendar.STOP_RENDER if rendering should stop with this style, null or nothing if rendering * should not be terminated -* @type String */ -YAHOO.widget.Calendar_Core.prototype.renderCellNotThisMonth = function(workingDate, cell) { +YAHOO.widget.Calendar.prototype.renderCellNotThisMonth = function(workingDate, cell) { YAHOO.util.Dom.addClass(cell, this.Style.CSS_CELL_OOM); cell.innerHTML=workingDate.getDate(); - return YAHOO.widget.Calendar_Core.STOP_RENDER; + return YAHOO.widget.Calendar.STOP_RENDER; }; /** * Renders the current calendar cell as a non-selectable "black-out" date using the default * restricted style. +* @method renderBodyCellRestricted * @param {Date} workingDate The current working Date object being used to generate the calendar * @param {HTMLTableCellElement} cell The current working cell in the calendar -* @return YAHOO.widget.Calendar_Core.STOP_RENDER if rendering should stop with this style, null or nothing if rendering +* @return {String} YAHOO.widget.Calendar.STOP_RENDER if rendering should stop with this style, null or nothing if rendering * should not be terminated -* @type String */ -YAHOO.widget.Calendar_Core.prototype.renderBodyCellRestricted = function(workingDate, cell) { - YAHOO.widget.Calendar_Core.setCssClasses(cell, [this.Style.CSS_CELL,this.Style.CSS_CELL_RESTRICTED]); +YAHOO.widget.Calendar.prototype.renderBodyCellRestricted = function(workingDate, cell) { + YAHOO.util.Dom.addClass(cell, this.Style.CSS_CELL); + YAHOO.util.Dom.addClass(cell, this.Style.CSS_CELL_RESTRICTED); cell.innerHTML=workingDate.getDate(); - return YAHOO.widget.Calendar_Core.STOP_RENDER; + return YAHOO.widget.Calendar.STOP_RENDER; }; -/******************** END BUILT-IN TABLE CELL RENDERERS ************************************/ -/******************** BEGIN MONTH NAVIGATION METHODS ************************************/ +// END BUILT-IN TABLE CELL RENDERERS + +// BEGIN MONTH NAVIGATION METHODS + /** * Adds the designated number of months to the current calendar month, and sets the current * calendar page date to the new month. -* @param {Integer} count The number of months to add to the current calendar +* @method addMonths +* @param {Number} count The number of months to add to the current calendar */ -YAHOO.widget.Calendar_Core.prototype.addMonths = function(count) { - this.pageDate = YAHOO.widget.DateMath.add(this.pageDate, YAHOO.widget.DateMath.MONTH, count); +YAHOO.widget.Calendar.prototype.addMonths = function(count) { + this.cfg.setProperty("pagedate", YAHOO.widget.DateMath.add(this.cfg.getProperty("pagedate"), YAHOO.widget.DateMath.MONTH, count)); this.resetRenderers(); - this.onChangePage(); + this.changePageEvent.fire(); }; /** * Subtracts the designated number of months from the current calendar month, and sets the current * calendar page date to the new month. -* @param {Integer} count The number of months to subtract from the current calendar +* @method subtractMonths +* @param {Number} count The number of months to subtract from the current calendar */ -YAHOO.widget.Calendar_Core.prototype.subtractMonths = function(count) { - this.pageDate = YAHOO.widget.DateMath.subtract(this.pageDate, YAHOO.widget.DateMath.MONTH, count); +YAHOO.widget.Calendar.prototype.subtractMonths = function(count) { + this.cfg.setProperty("pagedate", YAHOO.widget.DateMath.subtract(this.cfg.getProperty("pagedate"), YAHOO.widget.DateMath.MONTH, count)); this.resetRenderers(); - this.onChangePage(); + this.changePageEvent.fire(); }; /** * Adds the designated number of years to the current calendar, and sets the current * calendar page date to the new month. -* @param {Integer} count The number of years to add to the current calendar +* @method addYears +* @param {Number} count The number of years to add to the current calendar */ -YAHOO.widget.Calendar_Core.prototype.addYears = function(count) { - this.pageDate = YAHOO.widget.DateMath.add(this.pageDate, YAHOO.widget.DateMath.YEAR, count); +YAHOO.widget.Calendar.prototype.addYears = function(count) { + this.cfg.setProperty("pagedate", YAHOO.widget.DateMath.add(this.cfg.getProperty("pagedate"), YAHOO.widget.DateMath.YEAR, count)); this.resetRenderers(); - this.onChangePage(); + this.changePageEvent.fire(); }; /** * Subtcats the designated number of years from the current calendar, and sets the current * calendar page date to the new month. -* @param {Integer} count The number of years to subtract from the current calendar +* @method subtractYears +* @param {Number} count The number of years to subtract from the current calendar */ -YAHOO.widget.Calendar_Core.prototype.subtractYears = function(count) { - this.pageDate = YAHOO.widget.DateMath.subtract(this.pageDate, YAHOO.widget.DateMath.YEAR, count); +YAHOO.widget.Calendar.prototype.subtractYears = function(count) { + this.cfg.setProperty("pagedate", YAHOO.widget.DateMath.subtract(this.cfg.getProperty("pagedate"), YAHOO.widget.DateMath.YEAR, count)); this.resetRenderers(); - this.onChangePage(); + this.changePageEvent.fire(); }; /** * Navigates to the next month page in the calendar widget. +* @method nextMonth */ -YAHOO.widget.Calendar_Core.prototype.nextMonth = function() { +YAHOO.widget.Calendar.prototype.nextMonth = function() { this.addMonths(1); }; /** * Navigates to the previous month page in the calendar widget. +* @method previousMonth */ -YAHOO.widget.Calendar_Core.prototype.previousMonth = function() { +YAHOO.widget.Calendar.prototype.previousMonth = function() { this.subtractMonths(1); }; /** * Navigates to the next year in the currently selected month in the calendar widget. +* @method nextYear */ -YAHOO.widget.Calendar_Core.prototype.nextYear = function() { +YAHOO.widget.Calendar.prototype.nextYear = function() { this.addYears(1); }; /** * Navigates to the previous year in the currently selected month in the calendar widget. +* @method previousYear */ -YAHOO.widget.Calendar_Core.prototype.previousYear = function() { +YAHOO.widget.Calendar.prototype.previousYear = function() { this.subtractYears(1); }; -/****************** END MONTH NAVIGATION METHODS ************************************/ +// END MONTH NAVIGATION METHODS -/************* BEGIN SELECTION METHODS *************************************************************/ +// BEGIN SELECTION METHODS /** -* Resets the calendar widget to the originally selected month and year, and +* Resets the calendar widget to the originally selected month and year, and * sets the calendar to the initial selection(s). +* @method reset */ -YAHOO.widget.Calendar_Core.prototype.reset = function() { - this.selectedDates.length = 0; - this.selectedDates = this._selectedDates.concat(); - - this.pageDate = new Date(this._pageDate.getTime()); - this.onReset(); +YAHOO.widget.Calendar.prototype.reset = function() { + this.cfg.resetProperty("selected"); + this.cfg.resetProperty("pagedate"); + this.resetEvent.fire(); }; /** * Clears the selected dates in the current calendar widget and sets the calendar * to the current month and year. +* @method clear */ -YAHOO.widget.Calendar_Core.prototype.clear = function() { - this.selectedDates.length = 0; - this.pageDate = new Date(this.today.getTime()); - this.onClear(); +YAHOO.widget.Calendar.prototype.clear = function() { + this.cfg.setProperty("selected", []); + this.cfg.setProperty("pagedate", new Date(this.today.getTime())); + this.clearEvent.fire(); }; /** * Selects a date or a collection of dates on the current calendar. This method, by default, -* does not call the render method explicitly. Once selection has completed, render must be +* does not call the render method explicitly. Once selection has completed, render must be * called for the changes to be reflected visually. +* @method select * @param {String/Date/Date[]} date The date string of dates to select in the current calendar. Valid formats are * individual date(s) (12/24/2005,12/26/2005) or date range(s) (12/24/2005-1/1/2006). * Multiple comma-delimited dates can also be passed to this method (12/24/2005,12/11/2005-12/13/2005). * This method can also take a JavaScript Date object or an array of Date objects. -* @return Array of JavaScript Date objects representing all individual dates that are currently selected. -* @type Date[] +* @return {Date[]} Array of JavaScript Date objects representing all individual dates that are currently selected. */ -YAHOO.widget.Calendar_Core.prototype.select = function(date) { - this.onBeforeSelect(); +YAHOO.widget.Calendar.prototype.select = function(date) { + this.beforeSelectEvent.fire(); + var selected = this.cfg.getProperty("selected"); var aToBeSelected = this._toFieldArray(date); for (var a=0;a -1) { - if (this.pageDate.getMonth() == dCellDate.getMonth() && - this.pageDate.getFullYear() == dCellDate.getFullYear()) { + if (this.cfg.getProperty("pagedate").getMonth() == dCellDate.getMonth() && + this.cfg.getProperty("pagedate").getFullYear() == dCellDate.getFullYear()) { YAHOO.util.Dom.removeClass(cell, this.Style.CSS_CELL_SELECTED); } - this.selectedDates.splice(cellDateIndex, 1); + selected.splice(cellDateIndex, 1); } if (this.parent) { - this.parent.sync(this); + this.parent.cfg.setProperty("selected", selected); + } else { + this.cfg.setProperty("selected", selected); } - this.onDeselect(selectDate); + this.deselectEvent.fire(selectDate); return this.getSelectedDates(); }; /** * Deselects all dates on the current calendar. -* @return Array of JavaScript Date objects representing all individual dates that are currently selected. +* @method deselectAll +* @return {Date[]} Array of JavaScript Date objects representing all individual dates that are currently selected. * Assuming that this function executes properly, the return value should be an empty array. * However, the empty array is returned for the sake of being able to check the selection status * of the calendar. -* @type Date[] */ -YAHOO.widget.Calendar_Core.prototype.deselectAll = function() { - this.onBeforeDeselect(); - var count = this.selectedDates.length; - var sel = this.selectedDates.concat(); - this.selectedDates.length = 0; +YAHOO.widget.Calendar.prototype.deselectAll = function() { + this.beforeDeselectEvent.fire(); + var selected = this.cfg.getProperty("selected"); + var count = selected.length; + var sel = selected.concat(); + if (this.parent) { - this.parent.sync(this); + this.parent.cfg.setProperty("selected", []); + } else { + this.cfg.setProperty("selected", []); } - + if (count > 0) { - this.onDeselect(sel); + this.deselectEvent.fire(sel); } return this.getSelectedDates(); }; -/************* END SELECTION METHODS *************************************************************/ +// END SELECTION METHODS -/************* BEGIN TYPE CONVERSION METHODS ****************************************************/ +// BEGIN TYPE CONVERSION METHODS /** * Converts a date (either a JavaScript Date object, or a date string) to the internal data structure * used to represent dates: [[yyyy,mm,dd],[yyyy,mm,dd]]. +* @method _toFieldArray * @private * @param {String/Date/Date[]} date The date string of dates to deselect in the current calendar. Valid formats are * individual date(s) (12/24/2005,12/26/2005) or date range(s) (12/24/2005-1/1/2006). * Multiple comma-delimited dates can also be passed to this method (12/24/2005,12/11/2005-12/13/2005). -* This method can also take a JavaScript Date object or an array of Date objects. -* @return Array of date field arrays -* @type Array[](Integer[]) +* This method can also take a JavaScript Date object or an array of Date objects. +* @return {Array[](Number[])} Array of date field arrays */ -YAHOO.widget.Calendar_Core.prototype._toFieldArray = function(date) { - var returnDate = new Array(); +YAHOO.widget.Calendar.prototype._toFieldArray = function(date) { + var returnDate = []; if (date instanceof Date) { returnDate = [[date.getFullYear(), date.getMonth()+1, date.getDate()]]; @@ -1714,59 +2771,61 @@ returnDate[returnDate.length] = [d.getFullYear(),d.getMonth()+1,d.getDate()]; } } - + return returnDate; }; /** * Converts a date field array [yyyy,mm,dd] to a JavaScript Date object. +* @method _toDate * @private -* @param {Integer[]} dateFieldArray The date field array to convert to a JavaScript Date. -* @return JavaScript Date object representing the date field array -* @type Date +* @param {Number[]} dateFieldArray The date field array to convert to a JavaScript Date. +* @return {Date} JavaScript Date object representing the date field array */ -YAHOO.widget.Calendar_Core.prototype._toDate = function(dateFieldArray) { +YAHOO.widget.Calendar.prototype._toDate = function(dateFieldArray) { if (dateFieldArray instanceof Date) { return dateFieldArray; } else { return new Date(dateFieldArray[0],dateFieldArray[1]-1,dateFieldArray[2]); } }; -/************* END TYPE CONVERSION METHODS ******************************************************/ +// END TYPE CONVERSION METHODS -/************* BEGIN UTILITY METHODS ****************************************************/ +// BEGIN UTILITY METHODS + /** * Converts a date field array [yyyy,mm,dd] to a JavaScript Date object. +* @method _fieldArraysAreEqual * @private -* @param {Integer[]} array1 The first date field array to compare -* @param {Integer[]} array2 The first date field array to compare -* @return The boolean that represents the equality of the two arrays -* @type Boolean +* @param {Number[]} array1 The first date field array to compare +* @param {Number[]} array2 The first date field array to compare +* @return {Boolean} The boolean that represents the equality of the two arrays */ -YAHOO.widget.Calendar_Core.prototype._fieldArraysAreEqual = function(array1, array2) { +YAHOO.widget.Calendar.prototype._fieldArraysAreEqual = function(array1, array2) { var match = false; if (array1[0]==array2[0]&&array1[1]==array2[1]&&array1[2]==array2[2]) { - match=true; + match=true; } return match; }; /** * Gets the index of a date field array [yyyy,mm,dd] in the current list of selected dates. +* @method _indexOfSelectedFieldArray * @private -* @param {Integer[]} find The date field array to search for -* @return The index of the date field array within the collection of selected dates. +* @param {Number[]} find The date field array to search for +* @return {Number} The index of the date field array within the collection of selected dates. * -1 will be returned if the date is not found. -* @type Integer */ -YAHOO.widget.Calendar_Core.prototype._indexOfSelectedFieldArray = function(find) { +YAHOO.widget.Calendar.prototype._indexOfSelectedFieldArray = function(find) { var selected = -1; + var seldates = this.cfg.getProperty("selected"); - for (var s=0;s 0) { - this.init(id, containerId, monthyear, selected); - } -} +YAHOO.widget.Calendar_Core = YAHOO.widget.Calendar; -YAHOO.widget.Calendar.prototype = new YAHOO.widget.Calendar_Core(); +YAHOO.widget.Cal_Core = YAHOO.widget.Calendar; -YAHOO.widget.Calendar.prototype.buildShell = function() { - this.border = document.createElement("DIV"); - this.border.className = this.Style.CSS_CONTAINER; - - this.table = document.createElement("TABLE"); - this.table.cellSpacing = 0; - - YAHOO.widget.Calendar_Core.setCssClasses(this.table, [this.Style.CSS_CALENDAR]); - - this.border.id = this.id; - - this.buildShellHeader(); - this.buildShellBody(); - this.buildShellFooter(); -}; - -YAHOO.widget.Calendar.prototype.renderShell = function() { - this.border.appendChild(this.table); - this.oDomContainer.appendChild(this.border); - this.shellRendered = true; -}; - -YAHOO.widget.Calendar.prototype.renderHeader = function() { - this.headerCell.innerHTML = ""; - - var headerContainer = document.createElement("DIV"); - headerContainer.className = this.Style.CSS_HEADER; - - if (this.linkLeft) { - YAHOO.util.Event.removeListener(this.linkLeft, "mousedown", this.previousMonth); - } - this.linkLeft = document.createElement("A"); - this.linkLeft.innerHTML = " "; - YAHOO.util.Event.addListener(this.linkLeft, "mousedown", this.previousMonth, this, true); - this.linkLeft.style.backgroundImage = "url(" + this.Options.NAV_ARROW_LEFT + ")"; - this.linkLeft.className = this.Style.CSS_NAV_LEFT; - - if (this.linkRight) { - YAHOO.util.Event.removeListener(this.linkRight, "mousedown", this.nextMonth); - } - this.linkRight = document.createElement("A"); - this.linkRight.innerHTML = " "; - YAHOO.util.Event.addListener(this.linkRight, "mousedown", this.nextMonth, this, true); - this.linkRight.style.backgroundImage = "url(" + this.Options.NAV_ARROW_RIGHT + ")"; - this.linkRight.className = this.Style.CSS_NAV_RIGHT; - - headerContainer.appendChild(this.linkLeft); - headerContainer.appendChild(document.createTextNode(this.buildMonthLabel())); - headerContainer.appendChild(this.linkRight); - - this.headerCell.appendChild(headerContainer); -}; - -YAHOO.widget.Cal = YAHOO.widget.Calendar; /** -*

YAHOO.widget.CalendarGroup is a special container class for YAHOO.widget.Calendar_Core. This class facilitates +* YAHOO.widget.CalendarGroup is a special container class for YAHOO.widget.Calendar. This class facilitates * the ability to have multi-page calendar views that share a single dataset and are -* dependent on each other.

-* -*

The calendar group instance will refer to each of its elements using a 0-based index. +* dependent on each other. +* +* The calendar group instance will refer to each of its elements using a 0-based index. * For example, to construct the placeholder for a calendar group widget with id "cal1" and * containerId of "cal1Container", the markup would be as follows: *

* <div id="cal1Container_0"></div> * <div id="cal1Container_1"></div> * * The tables for the calendars ("cal1_0" and "cal1_1") will be inserted into those containers. -*

+* @namespace YAHOO.widget +* @class CalendarGroup * @constructor -* @param {Integer} pageCount The number of pages that this calendar should display. -* @param {String} id The id of the element that will be inserted into the DOM. -* @param {String} containerId The id of the container element that the calendar will be inserted into. -* @param {String} monthyear The month/year string used to set the current calendar page -* @param {String} selected A string of date values formatted using the date parser. The built-in - default date format is MM/DD/YYYY. Ranges are defined using - MM/DD/YYYY-MM/DD/YYYY. Month/day combinations are defined using MM/DD. - Any combination of these can be combined by delimiting the string with - commas. Example: "12/24/2005,12/25,1/18/2006-1/21/2006" +* @param {String} id The id of the table element that will represent the calendar widget +* @param {String} containerId The id of the container div element that will wrap the calendar table +* @param {Object} config The configuration object containing the Calendar's arguments */ -YAHOO.widget.CalendarGroup = function(pageCount, id, containerId, monthyear, selected) { +YAHOO.widget.CalendarGroup = function(id, containerId, config) { if (arguments.length > 0) { - this.init(pageCount, id, containerId, monthyear, selected); + this.init(id, containerId, config); } -} +}; /** * Initializes the calendar group. All subclasses must call this method in order for the * group to be initialized properly. -* @param {Integer} pageCount The number of pages that this calendar should display. -* @param {String} id The id of the element that will be inserted into the DOM. -* @param {String} containerId The id of the container element that the calendar will be inserted into. -* @param {String} monthyear The month/year string used to set the current calendar page -* @param {String} selected A string of date values formatted using the date parser. The built-in - default date format is MM/DD/YYYY. Ranges are defined using - MM/DD/YYYY-MM/DD/YYYY. Month/day combinations are defined using MM/DD. - Any combination of these can be combined by delimiting the string with - commas. Example: "12/24/2005,12/25,1/18/2006-1/21/2006" +* @method init +* @param {String} id The id of the table element that will represent the calendar widget +* @param {String} containerId The id of the container div element that will wrap the calendar table +* @param {Object} config The configuration object containing the Calendar's arguments */ -YAHOO.widget.CalendarGroup.prototype.init = function(pageCount, id, containerId, monthyear, selected) { +YAHOO.widget.CalendarGroup.prototype.init = function(id, containerId, config) { + this.initEvents(); + this.initStyles(); + + /** + * The collection of Calendar pages contained within the CalendarGroup + * @property pages + * @type YAHOO.widget.Calendar[] + */ + this.pages = []; + + /** + * The unique id associated with the CalendarGroup + * @property id + * @type String + */ this.id = id; - this.selectedDates = new Array(); + + /** + * The unique id associated with the CalendarGroup container + * @property containerId + * @type String + */ this.containerId = containerId; - - this.pageCount = pageCount; - this.pages = new Array(); + /** + * The outer containing element for the CalendarGroup + * @property oDomContainer + * @type HTMLElement + */ + this.oDomContainer = document.getElementById(containerId); + YAHOO.util.Dom.addClass(this.oDomContainer, YAHOO.widget.CalendarGroup.CSS_CONTAINER); + YAHOO.util.Dom.addClass(this.oDomContainer, YAHOO.widget.CalendarGroup.CSS_MULTI_UP); + + /** + * The Config object used to hold the configuration variables for the CalendarGroup + * @property cfg + * @type YAHOO.util.Config + */ + this.cfg = new YAHOO.util.Config(this); + + /** + * The local object which contains the CalendarGroup's options + * @property Options + * @type Object + */ + this.Options = {}; + + /** + * The local object which contains the CalendarGroup's locale settings + * @property Locale + * @type Object + */ + this.Locale = {}; + + this.setupConfig(); + + if (config) { + this.cfg.applyConfig(config, true); + } + + this.cfg.fireQueue(); + + // OPERA HACK FOR MISWRAPPED FLOATS + if (this.browser == "opera"){ + var fixWidth = function() { + var startW = this.oDomContainer.offsetWidth; + var w = 0; + for (var p=0;p 0) { + this.oDomContainer.style.width = w + "px"; + } + }; + this.renderEvent.subscribe(fixWidth,this,true); + } +}; + + +YAHOO.widget.CalendarGroup.prototype.setupConfig = function() { + /** + * The number of pages to include in the CalendarGroup. This value can only be set once, in the CalendarGroup's constructor arguments. + * @config pages + * @type Number + * @default 2 + */ + this.cfg.addProperty("pages", { value:2, validator:this.cfg.checkNumber, handler:this.configPages } ); + + /** + * The month/year representing the current visible Calendar date (mm/yyyy) + * @config pagedate + * @type String + * @default today's date + */ + this.cfg.addProperty("pagedate", { value:new Date(), handler:this.configPageDate } ); + + /** + * The date or range of dates representing the current Calendar selection + * @config selected + * @type String + * @default [] + */ + this.cfg.addProperty("selected", { value:[], handler:this.delegateConfig } ); + + /** + * The title to display above the CalendarGroup's month header + * @config title + * @type String + * @default "" + */ + this.cfg.addProperty("title", { value:"", handler:this.configTitle } ); + + /** + * Whether or not a close button should be displayed for this CalendarGroup + * @config close + * @type Boolean + * @default false + */ + this.cfg.addProperty("close", { value:false, handler:this.configClose } ); + + /** + * Whether or not an iframe shim should be placed under the Calendar to prevent select boxes from bleeding through in Internet Explorer 6 and below. + * @config iframe + * @type Boolean + * @default true + */ + this.cfg.addProperty("iframe", { value:true, handler:this.delegateConfig, validator:this.cfg.checkBoolean } ); + + /** + * The minimum selectable date in the current Calendar (mm/dd/yyyy) + * @config mindate + * @type String + * @default null + */ + this.cfg.addProperty("mindate", { value:null, handler:this.delegateConfig } ); + + /** + * The maximum selectable date in the current Calendar (mm/dd/yyyy) + * @config maxdate + * @type String + * @default null + */ + this.cfg.addProperty("maxdate", { value:null, handler:this.delegateConfig } ); + + // Options properties + + /** + * True if the Calendar should allow multiple selections. False by default. + * @config MULTI_SELECT + * @type Boolean + * @default false + */ + this.cfg.addProperty("MULTI_SELECT", { value:false, handler:this.delegateConfig, validator:this.cfg.checkBoolean } ); + + /** + * The weekday the week begins on. Default is 0 (Sunday). + * @config START_WEEKDAY + * @type number + * @default 0 + */ + this.cfg.addProperty("START_WEEKDAY", { value:0, handler:this.delegateConfig, validator:this.cfg.checkNumber } ); + + /** + * True if the Calendar should show weekday labels. True by default. + * @config SHOW_WEEKDAYS + * @type Boolean + * @default true + */ + this.cfg.addProperty("SHOW_WEEKDAYS", { value:true, handler:this.delegateConfig, validator:this.cfg.checkBoolean } ); + + /** + * True if the Calendar should show week row headers. False by default. + * @config SHOW_WEEK_HEADER + * @type Boolean + * @default false + */ + this.cfg.addProperty("SHOW_WEEK_HEADER",{ value:false, handler:this.delegateConfig, validator:this.cfg.checkBoolean } ); + + /** + * True if the Calendar should show week row footers. False by default. + * @config SHOW_WEEK_FOOTER + * @type Boolean + * @default false + */ + this.cfg.addProperty("SHOW_WEEK_FOOTER",{ value:false, handler:this.delegateConfig, validator:this.cfg.checkBoolean } ); + + /** + * True if the Calendar should suppress weeks that are not a part of the current month. False by default. + * @config HIDE_BLANK_WEEKS + * @type Boolean + * @default false + */ + this.cfg.addProperty("HIDE_BLANK_WEEKS",{ value:false, handler:this.delegateConfig, validator:this.cfg.checkBoolean } ); + + /** + * The image that should be used for the left navigation arrow. + * @config NAV_ARROW_LEFT + * @type String + * @default YAHOO.widget.Calendar.IMG_ROOT + "us/tr/callt.gif" + */ + this.cfg.addProperty("NAV_ARROW_LEFT", { value:YAHOO.widget.Calendar.IMG_ROOT + "us/tr/callt.gif", handler:this.delegateConfig } ); + + /** + * The image that should be used for the left navigation arrow. + * @config NAV_ARROW_RIGHT + * @type String + * @default YAHOO.widget.Calendar.IMG_ROOT + "us/tr/calrt.gif" + */ + this.cfg.addProperty("NAV_ARROW_RIGHT", { value:YAHOO.widget.Calendar.IMG_ROOT + "us/tr/calrt.gif", handler:this.delegateConfig } ); + + // Locale properties + + /** + * The short month labels for the current locale. + * @config MONTHS_SHORT + * @type String[] + * @default ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"] + */ + this.cfg.addProperty("MONTHS_SHORT", { value:["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"], handler:this.delegateConfig } ); + + /** + * The long month labels for the current locale. + * @config MONTHS_LONG + * @type String[] + * @default ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December" + */ + this.cfg.addProperty("MONTHS_LONG", { value:["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"], handler:this.delegateConfig } ); + + /** + * The 1-character weekday labels for the current locale. + * @config WEEKDAYS_1CHAR + * @type String[] + * @default ["S", "M", "T", "W", "T", "F", "S"] + */ + this.cfg.addProperty("WEEKDAYS_1CHAR", { value:["S", "M", "T", "W", "T", "F", "S"], handler:this.delegateConfig } ); + + /** + * The short weekday labels for the current locale. + * @config WEEKDAYS_SHORT + * @type String[] + * @default ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"] + */ + this.cfg.addProperty("WEEKDAYS_SHORT", { value:["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"], handler:this.delegateConfig } ); + + /** + * The medium weekday labels for the current locale. + * @config WEEKDAYS_MEDIUM + * @type String[] + * @default ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"] + */ + this.cfg.addProperty("WEEKDAYS_MEDIUM", { value:["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"], handler:this.delegateConfig } ); + + /** + * The long weekday labels for the current locale. + * @config WEEKDAYS_LONG + * @type String[] + * @default ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"] + */ + this.cfg.addProperty("WEEKDAYS_LONG", { value:["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"], handler:this.delegateConfig } ); + + /** + * The setting that determines which length of month labels should be used. Possible values are "short" and "long". + * @config LOCALE_MONTHS + * @type String + * @default "long" + */ + this.cfg.addProperty("LOCALE_MONTHS", { value:"long", handler:this.delegateConfig } ); + + /** + * The setting that determines which length of weekday labels should be used. Possible values are "1char", "short", "medium", and "long". + * @config LOCALE_WEEKDAYS + * @type String + * @default "short" + */ + this.cfg.addProperty("LOCALE_WEEKDAYS", { value:"short", handler:this.delegateConfig } ); + + /** + * The value used to delimit individual dates in a date string passed to various Calendar functions. + * @config DATE_DELIMITER + * @type String + * @default "," + */ + this.cfg.addProperty("DATE_DELIMITER", { value:",", handler:this.delegateConfig } ); + + /** + * The value used to delimit date fields in a date string passed to various Calendar functions. + * @config DATE_FIELD_DELIMITER + * @type String + * @default "/" + */ + this.cfg.addProperty("DATE_FIELD_DELIMITER",{ value:"/", handler:this.delegateConfig } ); + + /** + * The value used to delimit date ranges in a date string passed to various Calendar functions. + * @config DATE_RANGE_DELIMITER + * @type String + * @default "-" + */ + this.cfg.addProperty("DATE_RANGE_DELIMITER",{ value:"-", handler:this.delegateConfig } ); + + /** + * The position of the month in a month/year date string + * @config MY_MONTH_POSITION + * @type Number + * @default 1 + */ + this.cfg.addProperty("MY_MONTH_POSITION", { value:1, handler:this.delegateConfig, validator:this.cfg.checkNumber } ); + + /** + * The position of the year in a month/year date string + * @config MY_YEAR_POSITION + * @type Number + * @default 2 + */ + this.cfg.addProperty("MY_YEAR_POSITION", { value:2, handler:this.delegateConfig, validator:this.cfg.checkNumber } ); + + /** + * The position of the month in a month/day date string + * @config MD_MONTH_POSITION + * @type Number + * @default 1 + */ + this.cfg.addProperty("MD_MONTH_POSITION", { value:1, handler:this.delegateConfig, validator:this.cfg.checkNumber } ); + + /** + * The position of the day in a month/year date string + * @config MD_DAY_POSITION + * @type Number + * @default 2 + */ + this.cfg.addProperty("MD_DAY_POSITION", { value:2, handler:this.delegateConfig, validator:this.cfg.checkNumber } ); + + /** + * The position of the month in a month/day/year date string + * @config MDY_MONTH_POSITION + * @type Number + * @default 1 + */ + this.cfg.addProperty("MDY_MONTH_POSITION", { value:1, handler:this.delegateConfig, validator:this.cfg.checkNumber } ); + + /** + * The position of the day in a month/day/year date string + * @config MDY_DAY_POSITION + * @type Number + * @default 2 + */ + this.cfg.addProperty("MDY_DAY_POSITION", { value:2, handler:this.delegateConfig, validator:this.cfg.checkNumber } ); + + /** + * The position of the year in a month/day/year date string + * @config MDY_YEAR_POSITION + * @type Number + * @default 3 + */ + this.cfg.addProperty("MDY_YEAR_POSITION", { value:3, handler:this.delegateConfig, validator:this.cfg.checkNumber } ); + +}; + +/** +* Initializes CalendarGroup's built-in CustomEvents +* @method initEvents +*/ +YAHOO.widget.CalendarGroup.prototype.initEvents = function() { + var me = this; + + /** + * Proxy subscriber to subscribe to the CalendarGroup's child Calendars' CustomEvents + * @method sub + * @private + * @param {Function} fn The function to subscribe to this CustomEvent + * @param {Object} obj The CustomEvent's scope object + * @param {Boolean} bOverride Whether or not to apply scope correction + */ + var sub = function(fn, obj, bOverride) { + for (var p=0;p0) - { + var pageDate = cal.cfg.getProperty("pageDate"); + + if ((pageDate.getMonth()+1) == 1 && p>0) { year+=1; } cal.setYear(year); } }; - /** * Calls the render function of all child calendars within the group. +* @method render */ YAHOO.widget.CalendarGroup.prototype.render = function() { - for (var p=0;p=0;--p) - { + for (var p=this.pages.length-1;p>=0;--p) { var cal = this.pages[p]; cal.previousMonth(); } }; /** -* Calls the nextYear function of all child calendars within the group. +* Navigates to the next year in the currently selected month in the calendar widget. +* @method nextYear */ YAHOO.widget.CalendarGroup.prototype.nextYear = function() { - for (var p=0;p -* calGroup.wireEvent("onSelect", fnSelect); -* -* @param {String} eventName The name of the event to handler to set within all child calendars. -* @param {Function} fn The function to set into the specified event handler. +* Renders the header for the CalendarGroup. +* @method renderHeader */ -YAHOO.widget.CalendarGroup.prototype.wireEvent = function(eventName, fn) { - for (var p=0;p 0) - { - this.init(id, containerId, monthyear, selected); - } -} +YAHOO.widget.CalendarGroup.prototype.addMonths = function(count) { + this.callChildFunction("addMonths", count); +}; -YAHOO.widget.Calendar2up_Cal.prototype = new YAHOO.widget.Calendar_Core(); /** -* Renders the header for each individual calendar in the 2-up view. More -* specifically, this method handles the placement of left and right arrows for -* navigating between calendar pages. +* Subtracts the designated number of months from the current calendar month, and sets the current +* calendar page date to the new month. +* @method subtractMonths +* @param {Number} count The number of months to subtract from the current calendar */ -YAHOO.widget.Calendar2up_Cal.prototype.renderHeader = function() { - this.headerCell.innerHTML = ""; - - var headerContainer = document.createElement("DIV"); - headerContainer.className = this.Style.CSS_HEADER; - - if (this.index == 0) { - - if (this.linkLeft) { - YAHOO.util.Event.removeListener(this.linkLeft, "mousedown", this.parent.doPreviousMonth); - } - this.linkLeft = document.createElement("A"); - this.linkLeft.innerHTML = " "; - this.linkLeft.style.backgroundImage = "url(" + this.Options.NAV_ARROW_LEFT + ")"; - this.linkLeft.className = this.Style.CSS_NAV_LEFT; - - YAHOO.util.Event.addListener(this.linkLeft, "mousedown", this.parent.doPreviousMonth, this.parent); - headerContainer.appendChild(this.linkLeft); - } - - headerContainer.appendChild(document.createTextNode(this.buildMonthLabel())); - - if (this.index == 1) { - - if (this.linkRight) { - YAHOO.util.Event.removeListener(this.linkRight, "mousedown", this.parent.doNextMonth); - } - this.linkRight = document.createElement("A"); - this.linkRight.innerHTML = " "; - this.linkRight.style.backgroundImage = "url(" + this.Options.NAV_ARROW_RIGHT + ")"; - this.linkRight.className = this.Style.CSS_NAV_RIGHT; - - YAHOO.util.Event.addListener(this.linkRight, "mousedown", this.parent.doNextMonth, this.parent); - headerContainer.appendChild(this.linkRight); - } - - this.headerCell.appendChild(headerContainer); +YAHOO.widget.CalendarGroup.prototype.subtractMonths = function(count) { + this.callChildFunction("subtractMonths", count); }; - - - /** -* Calendar2up is the default implementation of the CalendarGroup base class, when used -* in a 2-up view. This class is the UED-approved version of the 2-up calendar selector widget. For all documentation -* on the implemented methods listed here, see the documentation for CalendarGroup. -* @constructor -* @param {String} id The id of the table element that will represent the calendar widget -* @param {String} containerId The id of the container element that will contain the calendar table -* @param {String} monthyear The month/year string used to set the current calendar page -* @param {String} selected A string of date values formatted using the date parser. The built-in - default date format is MM/DD/YYYY. Ranges are defined using - MM/DD/YYYY-MM/DD/YYYY. Month/day combinations are defined using MM/DD. - Any combination of these can be combined by delimiting the string with - commas. Example: "12/24/2005,12/25,1/18/2006-1/21/2006" -* @extends YAHOO.widget.CalendarGroup +* Adds the designated number of years to the current calendar, and sets the current +* calendar page date to the new month. +* @method addYears +* @param {Number} count The number of years to add to the current calendar */ -YAHOO.widget.Calendar2up = function(id, containerId, monthyear, selected) { - if (arguments.length > 0) - { - this.buildWrapper(containerId); - this.init(2, id, containerId, monthyear, selected); - } -} +YAHOO.widget.CalendarGroup.prototype.addYears = function(count) { + this.callChildFunction("addYears", count); +}; -YAHOO.widget.Calendar2up.prototype = new YAHOO.widget.CalendarGroup(); - /** -* CSS class representing the wrapper for the 2-up calendar -* @type string +* Subtcats the designated number of years from the current calendar, and sets the current +* calendar page date to the new month. +* @method subtractYears +* @param {Number} count The number of years to subtract from the current calendar */ -YAHOO.widget.Calendar2up.CSS_2UPWRAPPER = "yui-cal2upwrapper"; +YAHOO.widget.CalendarGroup.prototype.subtractYears = function(count) { + this.callChildFunction("subtractYears", count); +}; /** * CSS class representing the container for the calendar -* @type string +* @property YAHOO.widget.CalendarGroup.CSS_CONTAINER +* @static +* @final +* @type String */ -YAHOO.widget.Calendar2up.CSS_CONTAINER = "yui-calcontainer"; +YAHOO.widget.CalendarGroup.CSS_CONTAINER = "yui-calcontainer"; /** -* CSS class representing the container for the 2-up calendar -* @type string +* CSS class representing the container for the calendar +* @property YAHOO.widget.CalendarGroup.CSS_MULTI_UP +* @static +* @final +* @type String */ -YAHOO.widget.Calendar2up.CSS_2UPCONTAINER = "cal2up"; +YAHOO.widget.CalendarGroup.CSS_MULTI_UP = "multi"; /** * CSS class representing the title for the 2-up calendar -* @type string +* @property YAHOO.widget.CalendarGroup.CSS_2UPTITLE +* @static +* @final +* @type String */ -YAHOO.widget.Calendar2up.CSS_2UPTITLE = "title"; +YAHOO.widget.CalendarGroup.CSS_2UPTITLE = "title"; /** * CSS class representing the close icon for the 2-up calendar -* @type string +* @property YAHOO.widget.CalendarGroup.CSS_2UPCLOSE +* @static +* @final +* @type String */ -YAHOO.widget.Calendar2up.CSS_2UPCLOSE = "close-icon"; +YAHOO.widget.CalendarGroup.CSS_2UPCLOSE = "close-icon"; +YAHOO.augment(YAHOO.widget.CalendarGroup, YAHOO.widget.Calendar, "buildDayLabel", + "buildMonthLabel", + "renderOutOfBoundsDate", + "renderRowHeader", + "renderRowFooter", + "renderCellDefault", + "styleCellDefault", + "renderCellStyleHighlight1", + "renderCellStyleHighlight2", + "renderCellStyleHighlight3", + "renderCellStyleHighlight4", + "renderCellStyleToday", + "renderCellStyleSelected", + "renderCellNotThisMonth", + "renderBodyCellRestricted", + "initStyles", + "configTitle", + "configClose", + "hide", + "show", + "browser"); + /** -* Implementation of CalendarGroup.constructChild that ensures that child calendars of -* Calendar2up will be of type Calendar2up_Cal. +* Returns a string representation of the object. +* @method toString +* @return {String} A string representation of the CalendarGroup object. */ -YAHOO.widget.Calendar2up.prototype.constructChild = function(id,containerId,monthyear,selected) { - var cal = new YAHOO.widget.Calendar2up_Cal(id,containerId,monthyear,selected); - return cal; +YAHOO.widget.CalendarGroup.prototype.toString = function() { + return "CalendarGroup " + this.id; }; -/** -* Builds the wrapper container for the 2-up calendar. -* @param {String} containerId The id of the outer container element. -*/ -YAHOO.widget.Calendar2up.prototype.buildWrapper = function(containerId) { - var outerContainer = document.getElementById(containerId); - - outerContainer.className = YAHOO.widget.Calendar2up.CSS_2UPWRAPPER; - - var innerContainer = document.createElement("DIV"); - innerContainer.className = YAHOO.widget.Calendar2up.CSS_CONTAINER; - innerContainer.id = containerId + "_inner"; - - var cal1Container = document.createElement("DIV"); - cal1Container.id = containerId + "_0"; - cal1Container.className = YAHOO.widget.Calendar2up.CSS_2UPCONTAINER; - cal1Container.style.marginRight = "10px"; - - var cal2Container = document.createElement("DIV"); - cal2Container.id = containerId + "_1"; - cal2Container.className = YAHOO.widget.Calendar2up.CSS_2UPCONTAINER; - - outerContainer.appendChild(innerContainer); - innerContainer.appendChild(cal1Container); - innerContainer.appendChild(cal2Container); - - this.innerContainer = innerContainer; - this.outerContainer = outerContainer; -} +YAHOO.widget.CalGrp = YAHOO.widget.CalendarGroup; /** -* Renders the 2-up calendar. +* @class YAHOO.widget.Calendar2up +* @extends YAHOO.widget.CalendarGroup +* @deprecated The old Calendar2up class is no longer necessary, since CalendarGroup renders in a 2up view by default. */ -YAHOO.widget.Calendar2up.prototype.render = function() { - this.renderHeader(); - YAHOO.widget.CalendarGroup.prototype.render.call(this); - this.renderFooter(); +YAHOO.widget.Calendar2up = function(id, containerId, config) { + this.init(id, containerId, config); }; -/** -* Renders the header located at the top of the container for the 2-up calendar. -*/ -YAHOO.widget.Calendar2up.prototype.renderHeader = function() { - if (! this.title) { - this.title = ""; - } - if (! this.titleDiv) - { - this.titleDiv = document.createElement("DIV"); - if (this.title == "") - { - this.titleDiv.style.display="none"; - } - } +YAHOO.extend(YAHOO.widget.Calendar2up, YAHOO.widget.CalendarGroup); - this.titleDiv.className = YAHOO.widget.Calendar2up.CSS_2UPTITLE; - this.titleDiv.innerHTML = this.title; - - if (this.outerContainer.style.position == "absolute") - { - var linkClose = document.createElement("A"); - linkClose.href = "javascript:void(null)"; - YAHOO.util.Event.addListener(linkClose, "click", this.hide, this); - - var imgClose = document.createElement("IMG"); - imgClose.src = YAHOO.widget.Calendar_Core.IMG_ROOT + "us/my/bn/x_d.gif"; - imgClose.className = YAHOO.widget.Calendar2up.CSS_2UPCLOSE; - - linkClose.appendChild(imgClose); - - this.linkClose = linkClose; - - this.titleDiv.appendChild(linkClose); - } - - if (this.titleDiv != this.innerContainer.firstChild) { - this.innerContainer.insertBefore(this.titleDiv, this.innerContainer.firstChild); - } -} - /** -* Hides the 2-up calendar's outer container from view. +* @deprecated The old Calendar2up class is no longer necessary, since CalendarGroup renders in a 2up view by default. */ -YAHOO.widget.Calendar2up.prototype.hide = function(e, cal) { - if (! cal) - { - cal = this; - } - cal.outerContainer.style.display = "none"; -} - -/** -* Renders a footer for the 2-up calendar container. By default, this method is -* unimplemented. -*/ -YAHOO.widget.Calendar2up.prototype.renderFooter = function() {} - YAHOO.widget.Cal2up = YAHOO.widget.Calendar2up; \ No newline at end of file