Browse Source

Merge pull request #370 in FUI/fineui from ~LEI.WANG/fineui:master to master

* commit '0289a25b1800fc27ddd06da1c360bcac275bbc6e':
  no message
  no message
  BI-19186 处理bi.level_tree通过populate方法传递关键字
es6
guy 6 years ago
parent
commit
f8f482e7d6
  1. 2
      dist/_fineui.min.js
  2. 4
      dist/bundle.js
  3. 2
      dist/bundle.min.js
  4. 4
      dist/case.js
  5. 4
      dist/fineui.js
  6. 2
      dist/fineui.min.js
  7. 4
      src/case/tree/tree.level.js

2
dist/_fineui.min.js vendored

File diff suppressed because one or more lines are too long

4
dist/bundle.js vendored

@ -86812,9 +86812,9 @@ BI.LevelTree = BI.inherit(BI.Widget, {
this.tree.stroke.apply(this.tree, arguments);
},
populate: function (items) {
populate: function (items, keyword) {
items = this._formatItems(BI.Tree.transformToTreeFormat(items), 0);
this.tree.populate(items);
this.tree.populate(items, keyword);
},
setValue: function (v) {

2
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

4
dist/case.js vendored

@ -14363,9 +14363,9 @@ BI.LevelTree = BI.inherit(BI.Widget, {
this.tree.stroke.apply(this.tree, arguments);
},
populate: function (items) {
populate: function (items, keyword) {
items = this._formatItems(BI.Tree.transformToTreeFormat(items), 0);
this.tree.populate(items);
this.tree.populate(items, keyword);
},
setValue: function (v) {

4
dist/fineui.js vendored

@ -87055,9 +87055,9 @@ BI.LevelTree = BI.inherit(BI.Widget, {
this.tree.stroke.apply(this.tree, arguments);
},
populate: function (items) {
populate: function (items, keyword) {
items = this._formatItems(BI.Tree.transformToTreeFormat(items), 0);
this.tree.populate(items);
this.tree.populate(items, keyword);
},
setValue: function (v) {

2
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

4
src/case/tree/tree.level.js

@ -105,9 +105,9 @@ BI.LevelTree = BI.inherit(BI.Widget, {
this.tree.stroke.apply(this.tree, arguments);
},
populate: function (items) {
populate: function (items, keyword) {
items = this._formatItems(BI.Tree.transformToTreeFormat(items), 0);
this.tree.populate(items);
this.tree.populate(items, keyword);
},
setValue: function (v) {

Loading…
Cancel
Save