(view: ViewBase)
| 73 | } |
| 74 | |
| 75 | public loadView(view: ViewBase): void { |
| 76 | const tabView = this.parent as TabViewBase; |
| 77 | if (tabView && tabView.items) { |
| 78 | // Don't load items until their fragments are instantiated. |
| 79 | if ((<TabViewItemDefinition>this).canBeLoaded) { |
| 80 | super.loadView(view); |
| 81 | } |
| 82 | } |
| 83 | } |
| 84 | |
| 85 | public abstract _update(); |
| 86 | } |