Browse Source

BI-22551

es6
windy 6 years ago
parent
commit
ff8b95f85b
  1. 14
      dist/_fineui.min.js
  2. 4
      dist/bundle.js
  3. 28
      dist/bundle.min.js
  4. 4
      dist/fineui.js
  5. 14
      dist/fineui.min.js
  6. 4
      dist/widget.js
  7. 4
      src/widget/date/calendar/combo.year.date.js

14
dist/_fineui.min.js vendored

File diff suppressed because one or more lines are too long

4
dist/bundle.js vendored

@ -88112,6 +88112,10 @@ BI.YearDateCombo = BI.inherit(BI.Trigger, {
this.combo.on(BI.Combo.EVENT_CHANGE, function () {
self.fireEvent(BI.YearDateCombo.EVENT_CHANGE);
});
// BI-22551 popup未初始化传入的behavior无效
this.combo.on(BI.Combo.EVENT_BEFORE_POPUPVIEW, function () {
self.doBehavior();
});
},
setValue: function (v) {

28
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

4
dist/fineui.js vendored

@ -88355,6 +88355,10 @@ BI.YearDateCombo = BI.inherit(BI.Trigger, {
this.combo.on(BI.Combo.EVENT_CHANGE, function () {
self.fireEvent(BI.YearDateCombo.EVENT_CHANGE);
});
// BI-22551 popup未初始化传入的behavior无效
this.combo.on(BI.Combo.EVENT_BEFORE_POPUPVIEW, function () {
self.doBehavior();
});
},
setValue: function (v) {

14
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

4
dist/widget.js vendored

@ -533,6 +533,10 @@ BI.YearDateCombo = BI.inherit(BI.Trigger, {
this.combo.on(BI.Combo.EVENT_CHANGE, function () {
self.fireEvent(BI.YearDateCombo.EVENT_CHANGE);
});
// BI-22551 popup未初始化传入的behavior无效
this.combo.on(BI.Combo.EVENT_BEFORE_POPUPVIEW, function () {
self.doBehavior();
});
},
setValue: function (v) {

4
src/widget/date/calendar/combo.year.date.js

@ -53,6 +53,10 @@ BI.YearDateCombo = BI.inherit(BI.Trigger, {
this.combo.on(BI.Combo.EVENT_CHANGE, function () {
self.fireEvent(BI.YearDateCombo.EVENT_CHANGE);
});
// BI-22551 popup未初始化传入的behavior无效
this.combo.on(BI.Combo.EVENT_BEFORE_POPUPVIEW, function () {
self.doBehavior();
});
},
setValue: function (v) {

Loading…
Cancel
Save