windy 7 years ago
parent
commit
05219910d5
  1. 9
      dist/bundle.js
  2. 9
      dist/widget.js
  3. 9
      src/widget/multilayersingletree/multilayersingletree.leveltree.js

9
dist/bundle.js vendored

@ -91627,11 +91627,6 @@ BI.MultiLayerSingleLevelTree = BI.inherit(BI.Widget, {
el: { el: {
type: "bi.button_tree", type: "bi.button_tree",
chooseType: BI.Selection.Single, chooseType: BI.Selection.Single,
behaviors: {
redmark: function () {
return true;
}
},
layouts: [{ layouts: [{
type: "bi.vertical" type: "bi.vertical"
}] }]
@ -91645,8 +91640,8 @@ BI.MultiLayerSingleLevelTree = BI.inherit(BI.Widget, {
}); });
}, },
populate: function (nodes, keyword) { populate: function (nodes) {
this.tree.populate(this._formatItems(BI.Tree.transformToTreeFormat(nodes), 0), keyword); this.tree.populate(this._formatItems(BI.Tree.transformToTreeFormat(nodes), 0));
}, },
setValue: function (v) { setValue: function (v) {

9
dist/widget.js vendored

@ -6738,11 +6738,6 @@ BI.MultiLayerSingleLevelTree = BI.inherit(BI.Widget, {
el: { el: {
type: "bi.button_tree", type: "bi.button_tree",
chooseType: BI.Selection.Single, chooseType: BI.Selection.Single,
behaviors: {
redmark: function () {
return true;
}
},
layouts: [{ layouts: [{
type: "bi.vertical" type: "bi.vertical"
}] }]
@ -6756,8 +6751,8 @@ BI.MultiLayerSingleLevelTree = BI.inherit(BI.Widget, {
}); });
}, },
populate: function (nodes, keyword) { populate: function (nodes) {
this.tree.populate(this._formatItems(BI.Tree.transformToTreeFormat(nodes), 0), keyword); this.tree.populate(this._formatItems(BI.Tree.transformToTreeFormat(nodes), 0));
}, },
setValue: function (v) { setValue: function (v) {

9
src/widget/multilayersingletree/multilayersingletree.leveltree.js

@ -90,11 +90,6 @@ BI.MultiLayerSingleLevelTree = BI.inherit(BI.Widget, {
el: { el: {
type: "bi.button_tree", type: "bi.button_tree",
chooseType: BI.Selection.Single, chooseType: BI.Selection.Single,
behaviors: {
redmark: function () {
return true;
}
},
layouts: [{ layouts: [{
type: "bi.vertical" type: "bi.vertical"
}] }]
@ -108,8 +103,8 @@ BI.MultiLayerSingleLevelTree = BI.inherit(BI.Widget, {
}); });
}, },
populate: function (nodes, keyword) { populate: function (nodes) {
this.tree.populate(this._formatItems(BI.Tree.transformToTreeFormat(nodes), 0), keyword); this.tree.populate(this._formatItems(BI.Tree.transformToTreeFormat(nodes), 0));
}, },
setValue: function (v) { setValue: function (v) {

Loading…
Cancel
Save