Reactive Fox

Results 40 comments of Reactive Fox

What version are you using? Can you repeat the problem on stackblitz.com? Also, you do not need to use HostComponent for your dynamics. This feature is marked as deprecated due...

@ciukstar you can't do it that way. You need to create an `@Output()` with `EventEmitter` and with the same name in host component. All events will be handled by this...

As example on stackblitz https://stackblitz.com/edit/angular-ngxd-example-with-output-binding?file=src%2Fapp%2Fhello.component.ts

@balajibadly, you can use the output of the directive (ngxComponentOutletActivate) to get the component instance and then send any event to the component

You have to use (ngxComponentOutletActivate) in the template: ``` ``` And then you'll get a component instance in onActivate callback ``` onActivate(component: LazyComponent): void { component.something(); } ```

Thanks for your feedback, I'll add that into Readme 🙏

Noted that in the readme, thanks!

Thanks for the question. I was in a hurry to upgrade to version 9, and now many tests have failed. I'll fix it asap.

Please add a missing setter for a dynamic component. You can see that issue in the browser console. If this solves the problem, please close the issue. ![image](https://user-images.githubusercontent.com/1910515/74737021-035fb580-5265-11ea-8ffb-381d519e8720.png)

Could you please reproduce this issue on StackBlits or GitHub repo?