diff --git a/docs/changelog/7.x.x.txt b/docs/changelog/7.x.x.txt index 4bfbf81b4..f109d87b5 100644 --- a/docs/changelog/7.x.x.txt +++ b/docs/changelog/7.x.x.txt @@ -1,4 +1,5 @@ 7.7.13 + - fixed #10574: Creating Calendar Entry 7.7.12 - Updated auth to allow sending back of non-text/html mime types. diff --git a/www/extras/yui-webgui/build/datepicker/datepicker.js b/www/extras/yui-webgui/build/datepicker/datepicker.js index be2411df2..747f63893 100644 --- a/www/extras/yui-webgui/build/datepicker/datepicker.js +++ b/www/extras/yui-webgui/build/datepicker/datepicker.js @@ -2,6 +2,7 @@ YAHOO.namespace('WebGUI.Form'); YAHOO.WebGUI.Form.DatePicker = { init: function() { this.time = {}; + this.codeSelect = false; var container = document.createElement('div'); YAHOO.util.Dom.setStyle(container, 'font-size', '9pt'); YAHOO.util.Dom.setStyle(container, 'position', 'absolute'); @@ -143,9 +144,11 @@ YAHOO.WebGUI.Form.DatePicker = { this.min = '00'; if (!this.sec) this.sec = '00'; - this.hourEl.value = this.hour; - this.minuteEl.value = this.min; - this.secEl.value = this.sec; + if (this.useTime) { + this.hourEl.value = this.hour; + this.minuteEl.value = this.min; + this.secEl.value = this.sec; + } this.calendar.select(date); var selectedDates = this.calendar.getSelectedDates(); if (selectedDates.length > 0) {