Call ModelView base init after view init (#13261)

* Call ModelView base init after view init

* baseInit to end
This commit is contained in:
Charles Gagnon
2020-11-07 09:41:49 -08:00
committed by GitHub
parent 5e00dcb78c
commit 8b73391845
33 changed files with 43 additions and 116 deletions

View File

@@ -20,7 +20,7 @@ class TestComponent extends ComponentBase<azdata.ComponentProperties> {
this.baseInit();
}
ngOnInit() { }
ngAfterViewInit() { }
setLayout() { }
public addValidation(validation: () => boolean | Thenable<boolean>) {
@@ -44,7 +44,7 @@ class TestContainer extends ContainerBase<TestComponent> {
return this.items;
}
ngOnInit() { }
ngAfterViewInit() { }
setLayout() { }
public addValidation(validation: () => boolean | Thenable<boolean>) {