Browse Source

Merge pull request #1074 in VISUAL/fineui from ~WINDY/fineui:master to master

* commit 'cc863f5611b4b099fa997127efad9e64f36f8cb4':
  无JIRA任务 refactor: 和复选下拉框一样,getValue出来的值clone一下
es6
guy 5 years ago
parent
commit
91fa190520
  1. 6
      dist/2.0/fineui.ie.js
  2. 6
      dist/2.0/fineui.js
  3. 6
      dist/bundle.ie.js
  4. 6
      dist/bundle.js
  5. 6
      dist/fineui.ie.js
  6. 6
      dist/fineui.js
  7. 6
      dist/fineui_without_jquery_polyfill.js
  8. 6
      dist/widget.js
  9. 2
      src/widget/multitree/multi.tree.combo.js
  10. 2
      src/widget/multitree/multi.tree.insert.combo.js
  11. 2
      src/widget/multitree/multi.tree.list.combo.js

6
dist/2.0/fineui.ie.js vendored

@ -75846,7 +75846,7 @@ BI.MultiTreeCombo = BI.inherit(BI.Single, {
},
getValue: function () {
return this.storeValue.value;
return BI.deepClone(this.storeValue.value);
},
populate: function () {
@ -76154,7 +76154,7 @@ BI.MultiTreeInsertCombo = BI.inherit(BI.Single, {
},
getValue: function () {
return this.storeValue.value;
return BI.deepClone(this.storeValue.value);
},
populate: function () {
@ -76470,7 +76470,7 @@ BI.MultiTreeListCombo = BI.inherit(BI.Single, {
},
getValue: function () {
return this.storeValue.value;
return BI.deepClone(this.storeValue.value);
},
populate: function () {

6
dist/2.0/fineui.js vendored

@ -76250,7 +76250,7 @@ BI.MultiTreeCombo = BI.inherit(BI.Single, {
},
getValue: function () {
return this.storeValue.value;
return BI.deepClone(this.storeValue.value);
},
populate: function () {
@ -76558,7 +76558,7 @@ BI.MultiTreeInsertCombo = BI.inherit(BI.Single, {
},
getValue: function () {
return this.storeValue.value;
return BI.deepClone(this.storeValue.value);
},
populate: function () {
@ -76874,7 +76874,7 @@ BI.MultiTreeListCombo = BI.inherit(BI.Single, {
},
getValue: function () {
return this.storeValue.value;
return BI.deepClone(this.storeValue.value);
},
populate: function () {

6
dist/bundle.ie.js vendored

@ -75846,7 +75846,7 @@ BI.MultiTreeCombo = BI.inherit(BI.Single, {
},
getValue: function () {
return this.storeValue.value;
return BI.deepClone(this.storeValue.value);
},
populate: function () {
@ -76154,7 +76154,7 @@ BI.MultiTreeInsertCombo = BI.inherit(BI.Single, {
},
getValue: function () {
return this.storeValue.value;
return BI.deepClone(this.storeValue.value);
},
populate: function () {
@ -76470,7 +76470,7 @@ BI.MultiTreeListCombo = BI.inherit(BI.Single, {
},
getValue: function () {
return this.storeValue.value;
return BI.deepClone(this.storeValue.value);
},
populate: function () {

6
dist/bundle.js vendored

@ -76250,7 +76250,7 @@ BI.MultiTreeCombo = BI.inherit(BI.Single, {
},
getValue: function () {
return this.storeValue.value;
return BI.deepClone(this.storeValue.value);
},
populate: function () {
@ -76558,7 +76558,7 @@ BI.MultiTreeInsertCombo = BI.inherit(BI.Single, {
},
getValue: function () {
return this.storeValue.value;
return BI.deepClone(this.storeValue.value);
},
populate: function () {
@ -76874,7 +76874,7 @@ BI.MultiTreeListCombo = BI.inherit(BI.Single, {
},
getValue: function () {
return this.storeValue.value;
return BI.deepClone(this.storeValue.value);
},
populate: function () {

6
dist/fineui.ie.js vendored

@ -76091,7 +76091,7 @@ BI.MultiTreeCombo = BI.inherit(BI.Single, {
},
getValue: function () {
return this.storeValue.value;
return BI.deepClone(this.storeValue.value);
},
populate: function () {
@ -76399,7 +76399,7 @@ BI.MultiTreeInsertCombo = BI.inherit(BI.Single, {
},
getValue: function () {
return this.storeValue.value;
return BI.deepClone(this.storeValue.value);
},
populate: function () {
@ -76715,7 +76715,7 @@ BI.MultiTreeListCombo = BI.inherit(BI.Single, {
},
getValue: function () {
return this.storeValue.value;
return BI.deepClone(this.storeValue.value);
},
populate: function () {

6
dist/fineui.js vendored

@ -76495,7 +76495,7 @@ BI.MultiTreeCombo = BI.inherit(BI.Single, {
},
getValue: function () {
return this.storeValue.value;
return BI.deepClone(this.storeValue.value);
},
populate: function () {
@ -76803,7 +76803,7 @@ BI.MultiTreeInsertCombo = BI.inherit(BI.Single, {
},
getValue: function () {
return this.storeValue.value;
return BI.deepClone(this.storeValue.value);
},
populate: function () {
@ -77119,7 +77119,7 @@ BI.MultiTreeListCombo = BI.inherit(BI.Single, {
},
getValue: function () {
return this.storeValue.value;
return BI.deepClone(this.storeValue.value);
},
populate: function () {

6
dist/fineui_without_jquery_polyfill.js vendored

@ -59101,7 +59101,7 @@ BI.MultiTreeCombo = BI.inherit(BI.Single, {
},
getValue: function () {
return this.storeValue.value;
return BI.deepClone(this.storeValue.value);
},
populate: function () {
@ -59409,7 +59409,7 @@ BI.MultiTreeInsertCombo = BI.inherit(BI.Single, {
},
getValue: function () {
return this.storeValue.value;
return BI.deepClone(this.storeValue.value);
},
populate: function () {
@ -59725,7 +59725,7 @@ BI.MultiTreeListCombo = BI.inherit(BI.Single, {
},
getValue: function () {
return this.storeValue.value;
return BI.deepClone(this.storeValue.value);
},
populate: function () {

6
dist/widget.js vendored

@ -13910,7 +13910,7 @@ BI.MultiTreeCombo = BI.inherit(BI.Single, {
},
getValue: function () {
return this.storeValue.value;
return BI.deepClone(this.storeValue.value);
},
populate: function () {
@ -14218,7 +14218,7 @@ BI.MultiTreeInsertCombo = BI.inherit(BI.Single, {
},
getValue: function () {
return this.storeValue.value;
return BI.deepClone(this.storeValue.value);
},
populate: function () {
@ -14534,7 +14534,7 @@ BI.MultiTreeListCombo = BI.inherit(BI.Single, {
},
getValue: function () {
return this.storeValue.value;
return BI.deepClone(this.storeValue.value);
},
populate: function () {

2
src/widget/multitree/multi.tree.combo.js

@ -269,7 +269,7 @@ BI.MultiTreeCombo = BI.inherit(BI.Single, {
},
getValue: function () {
return this.storeValue.value;
return BI.deepClone(this.storeValue.value);
},
populate: function () {

2
src/widget/multitree/multi.tree.insert.combo.js

@ -291,7 +291,7 @@ BI.MultiTreeInsertCombo = BI.inherit(BI.Single, {
},
getValue: function () {
return this.storeValue.value;
return BI.deepClone(this.storeValue.value);
},
populate: function () {

2
src/widget/multitree/multi.tree.list.combo.js

@ -299,7 +299,7 @@ BI.MultiTreeListCombo = BI.inherit(BI.Single, {
},
getValue: function () {
return this.storeValue.value;
return BI.deepClone(this.storeValue.value);
},
populate: function () {

Loading…
Cancel
Save