* Method is intended to be overridden by inheritors and used as "protected"
(view: ViewBase, atIndex?: number)
| 1011 | * Method is intended to be overridden by inheritors and used as "protected" |
| 1012 | */ |
| 1013 | public _addViewCore(view: ViewBase, atIndex?: number) { |
| 1014 | this._inheritStyles(view); |
| 1015 | |
| 1016 | if (this._context) { |
| 1017 | view._setupUI(this._context, atIndex); |
| 1018 | } |
| 1019 | |
| 1020 | if (this._isLoaded) { |
| 1021 | this.loadView(view); |
| 1022 | } |
| 1023 | } |
| 1024 | |
| 1025 | /** |
| 1026 | * Load view. |