difference between view exit and view destroy
- 2019 年 10 月 4 日
- 筆記
版權聲明:本文為博主原創文章,遵循 CC 4.0 BY-SA 版權協議,轉載請附上原文出處鏈接和本聲明。
本文鏈接:https://jerry.blog.csdn.net/article/details/100824026
Created by Wang, Jerry, last modified on Nov 08, 2015
- Control.prototype.destroy
- _cleanupBusyIndicator();
- sap.ui.core.ResizeHandler.deregisterAllForControl
- this._busyIndicatorDelayedCallId
- q.sap.clearDelayedCall
- this._busyAnimationTimer1
- clearTimeout(this._busyAnimationTimer1);
- bSuppressInvalidate if true, the UI element is not marked for redraw
- ManagedObject.prototype.destroy.call(this, bSuppressInvalidate);
- this.$().remove(); // remove this control from DOM, e.g. if there is no parent
- Inside view.destroy, it will call this.exit if this.exit exists.
- in control.prototype.exit, this.oAfterRenderingNotifier.destroy();
- in control.prototype.onControllerConnected, sap.ui.base.ManagedObject.runWithPreprocessors calls X.parseTemplate
- In Core.js, Core.prototype.deregisterElement, delete this.mElements[oElement.getId()];











