|
|
@ -103,17 +103,17 @@ BI.DateCalendarPopup = BI.inherit(BI.Widget, { |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
_checkMin: function () { |
|
|
|
_checkMin: function () { |
|
|
|
var calendar = this.calendar.getSelectedCard(); |
|
|
|
var o = this.options; |
|
|
|
if (BI.isNotNull(calendar)) { |
|
|
|
BI.each(this.calendar.getAllCard(), function (idx, calendar) { |
|
|
|
calendar.setMinDate(this.options.min); |
|
|
|
calendar.setMinDate(o.min); |
|
|
|
} |
|
|
|
}); |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
_checkMax: function () { |
|
|
|
_checkMax: function () { |
|
|
|
var calendar = this.calendar.getSelectedCard(); |
|
|
|
var o = this.options; |
|
|
|
if (BI.isNotNull(calendar)) { |
|
|
|
BI.each(this.calendar.getAllCard(), function (idx, calendar) { |
|
|
|
calendar.setMaxDate(this.options.max); |
|
|
|
calendar.setMaxDate(o.max); |
|
|
|
} |
|
|
|
}); |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
setMinDate: function (minDate) { |
|
|
|
setMinDate: function (minDate) { |
|
|
|