diff --git a/src/base/el.js b/src/base/el.js index f3f3e7e15..6feb40f42 100644 --- a/src/base/el.js +++ b/src/base/el.js @@ -9,18 +9,14 @@ BI.EL = BI.inherit(BI.Widget, { _defaultConfig: function () { return BI.extend(BI.EL.superclass._defaultConfig.apply(this, arguments), { baseCls: "bi-el", - el: {}, - layout: {} + el: {} }); }, - _init: function () { - BI.EL.superclass._init.apply(this, arguments); + + render: function () { var self = this, o = this.options; - this.ele = BI.createWidget(o.el); - BI.createWidget(o.layout, { - type: "bi.adaptive", - element: this, - items: [this.ele] + this.ele = BI.createWidget(o.el, { + element: this }); this.ele.on(BI.Controller.EVENT_CHANGE, function () { self.fireEvent(BI.Controller.EVENT_CHANGE, arguments); @@ -39,4 +35,4 @@ BI.EL = BI.inherit(BI.Widget, { this.ele.populate.apply(this, arguments); } }); -BI.shortcut("bi.el", BI.EL); \ No newline at end of file +BI.shortcut("bi.el", BI.EL);