Browse Source

Merge pull request #945 in VISUAL/fineui from ~IMP/fineui_fui:master to master

* commit '10b8d15dc92b5b5ef7ca774f2134aeb979a0c6cd':
  BI-45174 feature: combo的动态布局
es6
imp 5 years ago
parent
commit
af2d9226af
  1. 14
      src/base/combination/combo.js

14
src/base/combination/combo.js

@ -10,6 +10,9 @@ BI.Combo = BI.inherit(BI.Widget, {
trigger: "click", trigger: "click",
toggle: true, toggle: true,
direction: "bottom", // top||bottom||left||right||top,left||top,right||bottom,left||bottom,right direction: "bottom", // top||bottom||left||right||top,left||top,right||bottom,left||bottom,right
logic: {
dynamic: true
},
container: null, // popupview放置的容器,默认为this.element container: null, // popupview放置的容器,默认为this.element
isDefaultInit: false, isDefaultInit: false,
destroyWhenHide: false, destroyWhenHide: false,
@ -67,14 +70,13 @@ BI.Combo = BI.inherit(BI.Widget, {
} }
}); });
BI.createWidget({ BI.createWidget(BI.extend({
type: "bi.vertical", element: this
scrolly: false, }, BI.LogicFactory.createLogic("vertical", BI.extend(o.logic, {
element: this,
items: [ items: [
{el: this.combo} { el: this.combo }
] ]
}); }))));
o.isDefaultInit && (this._assertPopupView()); o.isDefaultInit && (this._assertPopupView());
BI.Resizers.add(this.getName(), BI.bind(function () { BI.Resizers.add(this.getName(), BI.bind(function () {
if (this.isViewVisible()) { if (this.isViewVisible()) {

Loading…
Cancel
Save