Browse Source

feature: 去掉disabled

es6
guy 3 years ago
parent
commit
dcac615ded
  1. 12
      src/core/4.widget.js

12
src/core/4.widget.js

@ -570,12 +570,12 @@
throw new Error("组件:组件名已存在,不能进行添加"); throw new Error("组件:组件名已存在,不能进行添加");
} }
widget._setParent && widget._setParent(this); widget._setParent && widget._setParent(this);
if(!this.isEnabled()){ // if(!this.isEnabled()){
widget._setEnable(false); // widget._setEnable(false);
} // }
if(!this.isValid()){ // if(!this.isValid()){
widget._setValid(false); // widget._setValid(false);
} // }
widget.on(BI.Events.DESTROY, function () { widget.on(BI.Events.DESTROY, function () {
BI.remove(self._children, this); BI.remove(self._children, this);
}); });

Loading…
Cancel
Save