From: Keith Wood Date: Fri, 7 Nov 2008 10:16:34 +0000 (+0000) Subject: Correct display of big prev/next links when disabled. X-Git-Tag: 1.6rc3~472 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=e751bf0e536d7174a6c704e4826d882cbb116672;p=jquery-ui.git Correct display of big prev/next links when disabled. Correct spacing between month and year when non-selectable. --- diff --git a/ui/ui.datepicker.js b/ui/ui.datepicker.js index 9570729d5..ad6b8194f 100644 --- a/ui/ui.datepicker.js +++ b/ui/ui.datepicker.js @@ -1391,7 +1391,8 @@ $.extend(Datepicker.prototype, { this._addStatus(showStatus, inst.id, this._get(inst, 'prevBigStatus'), initStatus) + '>' + prevBigText + '' : '') + '' + prevText + '' : - (hideIfNoPrevNext ? '' : '')) + ''; + (hideIfNoPrevNext ? '' : (showBigPrevNext ? '' : '') + + '')) + ''; var nextText = this._get(inst, 'nextText'); nextText = (!navigationAsDateFormat ? nextText : this.formatDate( nextText, new Date(drawYear, drawMonth + stepMonths, 1), this._getFormatConfig(inst))); @@ -1403,7 +1404,8 @@ $.extend(Datepicker.prototype, { this._addStatus(showStatus, inst.id, this._get(inst, 'nextStatus'), initStatus) + '>' + nextText + '' + (showBigPrevNext ? '' + nextBigText + '' : '') : - (hideIfNoPrevNext ? '' : '')) + ''; + (hideIfNoPrevNext ? '' : '' + + (showBigPrevNext ? '' : ''))) + ''; var currentText = this._get(inst, 'currentText'); var gotoDate = (this._get(inst, 'gotoCurrent') && inst.currentDay ? currentDate : today); currentText = (!navigationAsDateFormat ? currentText : @@ -1525,12 +1527,14 @@ $.extend(Datepicker.prototype, { _generateMonthYearHeader: function(inst, drawMonth, drawYear, minDate, maxDate, selectedDate, secondary, showStatus, initStatus, monthNames) { minDate = (inst.rangeStart && minDate && selectedDate < minDate ? selectedDate : minDate); + var changeMonth = this._get(inst, 'changeMonth'); + var changeYear = this._get(inst, 'changeYear'); var showMonthAfterYear = this._get(inst, 'showMonthAfterYear'); var html = '
'; var monthHtml = ''; // month selection - if (secondary || !this._get(inst, 'changeMonth')) - monthHtml += monthNames[drawMonth] + ' '; + if (secondary || !changeMonth) + monthHtml += monthNames[drawMonth]; else { var inMinYear = (minDate && minDate.getFullYear() == drawYear); var inMaxYear = (maxDate && maxDate.getFullYear() == drawYear); @@ -1548,9 +1552,9 @@ $.extend(Datepicker.prototype, { monthHtml += ''; } if (!showMonthAfterYear) - html += monthHtml; + html += monthHtml + (changeMonth && changeYear ? '' : ' '); // year selection - if (secondary || !this._get(inst, 'changeYear')) + if (secondary || !changeYear) html += drawYear; else { // determine range of years to display @@ -1582,7 +1586,7 @@ $.extend(Datepicker.prototype, { html += ''; } if (showMonthAfterYear) - html += monthHtml; + html += (changeMonth && changeYear ? '' : ' ') + monthHtml; html += '
'; // Close datepicker_header return html; },