|
|
|
@ -14342,9 +14342,7 @@ BI.Widget = BI.inherit(BI.OB, {
|
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
update: function () { |
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
update: null, |
|
|
|
|
|
|
|
|
|
destroyed: function () { |
|
|
|
|
}, |
|
|
|
@ -19482,9 +19480,10 @@ BI.Layout = BI.inherit(BI.Widget, {
|
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
var updated; |
|
|
|
|
if (updated = this._children[this._getChildName(index)].update(this._getOptions(item))) { |
|
|
|
|
return updated; |
|
|
|
|
var child = this._children[this._getChildName(index)]; |
|
|
|
|
if (child.update) { |
|
|
|
|
child.update(this._getOptions(item)); |
|
|
|
|
return true; |
|
|
|
|
} |
|
|
|
|
this._children[this._getChildName(index)].destroy(); |
|
|
|
|
var w = this._addElement(index, item); |
|
|
|
|