Browse Source

无JIRA任务 populate的时候更新一下items

es6
windy 6 years ago
parent
commit
c8a79c6357
  1. 1
      dist/bundle.ie.js
  2. 12
      dist/bundle.ie.min.js
  3. 1
      dist/bundle.js
  4. 4
      dist/bundle.min.js
  5. 1
      dist/case.js
  6. 25
      dist/demo.js
  7. 1
      dist/fineui.ie.js
  8. 12
      dist/fineui.ie.min.js
  9. 1
      dist/fineui.js
  10. 4
      dist/fineui.min.js
  11. 1
      dist/fineui_without_jquery_polyfill.js
  12. 2
      dist/utils.min.js
  13. 1
      src/case/combo/searchtextvaluecombo/combo.searchtextvalue.js

1
dist/bundle.ie.js vendored

@ -53146,6 +53146,7 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, {
},
populate: function (items) {
this.options.items = items;
this.combo.populate(items);
},

12
dist/bundle.ie.min.js vendored

File diff suppressed because one or more lines are too long

1
dist/bundle.js vendored

@ -53685,6 +53685,7 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, {
},
populate: function (items) {
this.options.items = items;
this.combo.populate(items);
},

4
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

1
dist/case.js vendored

@ -4820,6 +4820,7 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, {
},
populate: function (items) {
this.options.items = items;
this.combo.populate(items);
},

25
dist/demo.js vendored

@ -6041,7 +6041,30 @@ Demo.HtapeLayout = BI.inherit(BI.Widget, {
};
}
});
BI.shortcut("demo.htape", Demo.HtapeLayout);/**
BI.shortcut("demo.htape", Demo.HtapeLayout);Demo.InlineVerticalLayout = BI.inherit(BI.Widget, {
props: {
baseCls: "demo-absolute"
},
render: function () {
return {
type: "bi.inline_vertical_adapt",
items: [{
type: "bi.label",
text: "绝对布局",
cls: "layout-bg1",
width: 300,
height: 200
}, {
type: "bi.label",
text: "绝对布局",
cls: "layout-bg1",
width: 300,
height: 100
}]
};
}
});
BI.shortcut("demo.inline_vertical", Demo.InlineVerticalLayout);/**
* Created by User on 2017/3/22.
*/
Demo.LeftRightVerticalAdaptLayout = BI.inherit(BI.Widget, {

1
dist/fineui.ie.js vendored

@ -53388,6 +53388,7 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, {
},
populate: function (items) {
this.options.items = items;
this.combo.populate(items);
},

12
dist/fineui.ie.min.js vendored

File diff suppressed because one or more lines are too long

1
dist/fineui.js vendored

@ -53927,6 +53927,7 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, {
},
populate: function (items) {
this.options.items = items;
this.combo.populate(items);
},

4
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

1
dist/fineui_without_jquery_polyfill.js vendored

@ -37008,6 +37008,7 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, {
},
populate: function (items) {
this.options.items = items;
this.combo.populate(items);
},

2
dist/utils.min.js vendored

File diff suppressed because one or more lines are too long

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

@ -138,6 +138,7 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, {
},
populate: function (items) {
this.options.items = items;
this.combo.populate(items);
},

Loading…
Cancel
Save