Browse Source

JSY-17849 fix: 【迭代】数据回填,简道云表删除,数据回填-回填表没有保留节点名

es6
zsmj 2 years ago
parent
commit
b95bc8c344
  1. 32
      src/widget/multilayersingletree/multilayersingletree.combo.js

32
src/widget/multilayersingletree/multilayersingletree.combo.js

@ -34,38 +34,6 @@ BI.MultiLayerSingleTreeCombo = BI.inherit(BI.Widget, {
var self = this, o = this.options;
return (o.itemsCreator === BI.emptyFn) ? this._getSyncConfig() : this._getAsyncConfig();
return this._shouldWrapper() ? combo : {
type: "bi.absolute",
height: o.height,
items: [{
el: combo,
left: 0,
right: 0,
top: 0,
bottom: 0
}, {
el: {
type: "bi.trigger_icon_button",
cls: "trigger-icon-button",
ref: function (_ref) {
self.triggerBtn = _ref;
},
width: o.height,
height: o.height,
handler: function () {
if (self.combo.isViewVisible()) {
self.combo.hideView();
} else {
self.combo.showView();
}
}
},
right: 0,
bottom: 0,
top: 0
}]
};
},
_shouldWrapper: function () {

Loading…
Cancel
Save