You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
const factory = this._factoryResolver.resolveComponentFactory(this.class_component);
this.componentRef = this.viewContainerRef.createComponent(factory);
// then give some data
this.setComponentData(this.data);
to ngOnAfterInit
because it is not working in ngOnInit
The text was updated successfully, but these errors were encountered:
I am using ngx-admin-lte": "^3.0.0-beta.1
Angular 8.
I do not know how to use plunker.
When I am doing
private mylinks: any = [ { class: MenuWidgetComponent, data: { label: 'Home', icon: 'user', url: '/' } }, ]
it throws error ERROR TypeError: Cannot read property 'createComponent' of undefined at ComponentLoaderComponent.ngOnInit (ngx-admin-lte.js:998) at checkAndUpdateDirectiveInline (core.js:31910) at checkAndUpdateNodeInline (core.js:44367) at checkAndUpdateNode (core.js:44306) at debugCheckAndUpdateNode (core.js:45328) at debugCheckDirectivesFn (core.js:45271) at Object.eval [as updateDirectives] (MenuAsideComponent.html:40) at Object.debugUpdateDirectives [as updateDirectives] (core.js:45259) at checkAndUpdateView (core.js:44271) at callViewAction (core.js:44637)
Please, move this
to ngOnAfterInit
because it is not working in ngOnInit
The text was updated successfully, but these errors were encountered: