Browse Source

Merge pull request #895 in VISUAL/fineui from ~LEI.WANG/fineui:master to master

* commit '021f7318d086190295d116f54e687219c608502f':
  BI-42901 fix: 当search_text_value_combo未弹出popup前,popup为undefined,popup.getValue报错
es6
lei.wang 5 years ago
parent
commit
ae24c9dd75
  1. 3
      dist/2.0/fineui.ie.js
  2. 3
      dist/2.0/fineui.js
  3. 3
      dist/bundle.ie.js
  4. 3
      dist/bundle.js
  5. 3
      dist/case.js
  6. 3
      dist/fineui.ie.js
  7. 3
      dist/fineui.js
  8. 3
      dist/fineui_without_jquery_polyfill.js
  9. 3
      src/case/combo/searchtextvaluecombo/combo.searchtextvalue.js

3
dist/2.0/fineui.ie.js vendored

@ -54392,6 +54392,7 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, {
}
}]
},
value: o.value,
maxHeight: 252
},
listeners: [{
@ -54471,7 +54472,7 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, {
},
getValue: function () {
var value = this.popup.getValue();
var value = this.combo.getValue();
return BI.isNull(value) ? [] : (BI.isArray(value) ? value : [value]);
}
});

3
dist/2.0/fineui.js vendored

@ -54796,6 +54796,7 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, {
}
}]
},
value: o.value,
maxHeight: 252
},
listeners: [{
@ -54875,7 +54876,7 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, {
},
getValue: function () {
var value = this.popup.getValue();
var value = this.combo.getValue();
return BI.isNull(value) ? [] : (BI.isArray(value) ? value : [value]);
}
});

3
dist/bundle.ie.js vendored

@ -54392,6 +54392,7 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, {
}
}]
},
value: o.value,
maxHeight: 252
},
listeners: [{
@ -54471,7 +54472,7 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, {
},
getValue: function () {
var value = this.popup.getValue();
var value = this.combo.getValue();
return BI.isNull(value) ? [] : (BI.isArray(value) ? value : [value]);
}
});

3
dist/bundle.js vendored

@ -54796,6 +54796,7 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, {
}
}]
},
value: o.value,
maxHeight: 252
},
listeners: [{
@ -54875,7 +54876,7 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, {
},
getValue: function () {
var value = this.popup.getValue();
var value = this.combo.getValue();
return BI.isNull(value) ? [] : (BI.isArray(value) ? value : [value]);
}
});

3
dist/case.js vendored

@ -4681,6 +4681,7 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, {
}
}]
},
value: o.value,
maxHeight: 252
},
listeners: [{
@ -4760,7 +4761,7 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, {
},
getValue: function () {
var value = this.popup.getValue();
var value = this.combo.getValue();
return BI.isNull(value) ? [] : (BI.isArray(value) ? value : [value]);
}
});

3
dist/fineui.ie.js vendored

@ -54637,6 +54637,7 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, {
}
}]
},
value: o.value,
maxHeight: 252
},
listeners: [{
@ -54716,7 +54717,7 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, {
},
getValue: function () {
var value = this.popup.getValue();
var value = this.combo.getValue();
return BI.isNull(value) ? [] : (BI.isArray(value) ? value : [value]);
}
});

3
dist/fineui.js vendored

@ -55041,6 +55041,7 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, {
}
}]
},
value: o.value,
maxHeight: 252
},
listeners: [{
@ -55120,7 +55121,7 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, {
},
getValue: function () {
var value = this.popup.getValue();
var value = this.combo.getValue();
return BI.isNull(value) ? [] : (BI.isArray(value) ? value : [value]);
}
});

3
dist/fineui_without_jquery_polyfill.js vendored

@ -38063,6 +38063,7 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, {
}
}]
},
value: o.value,
maxHeight: 252
},
listeners: [{
@ -38142,7 +38143,7 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, {
},
getValue: function () {
var value = this.popup.getValue();
var value = this.combo.getValue();
return BI.isNull(value) ? [] : (BI.isArray(value) ? value : [value]);
}
});

3
src/case/combo/searchtextvaluecombo/combo.searchtextvalue.js

@ -69,6 +69,7 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, {
}
}]
},
value: o.value,
maxHeight: 252
},
listeners: [{
@ -148,7 +149,7 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, {
},
getValue: function () {
var value = this.popup.getValue();
var value = this.combo.getValue();
return BI.isNull(value) ? [] : (BI.isArray(value) ? value : [value]);
}
});

Loading…
Cancel
Save