* commit '870f823aeb1256fb352fec4dc4f2328a1b896ee6': KERNEL-2278 fix: 测试的一些问题修复
@ -273,12 +273,14 @@ BI.DynamicDateCombo = BI.inherit(BI.Single, {
var o = this.options;
o.minDate = minDate;
this.trigger.setMinDate(minDate);
this.popup && this.popup.setMinDate(minDate);
},
setMaxDate: function (maxDate) {
o.maxDate = maxDate;
this.trigger.setMaxDate(maxDate);
this.popup && this.popup.setMaxDate(maxDate);
setValue: function (v) {
@ -275,12 +275,14 @@ BI.DynamicDateTimeCombo = BI.inherit(BI.Single, {