Before i explain my issue here is the background to my setup.
At the heart is the AG Grid and the ag-grid-angular component. On which i build a ag-grid-base Component which handles the basic function like filter paging etc. Then i have a component which is called filter-grid which add's some dynamic setup stuff to the grid like loading column lists etc. Then i use a this component to setup my instances of different grids to display data. One function of the grid is to view and or edit data in a modal form. I implemented an event emitter to let my component which called the dialog to know when it needs to reload the data because of changes.
the data reload function is part my ag-grid-component and i can call it just fine from my filter-grid component but when i try to call a function on the filter-grid from my custom-grid i get a bunch of errors like
BucketGridComponent_Host.ngfactory.js? [sm]:1 ERROR Error: StaticInjectorError(AppModule)[BucketGridComponent -> FilterGridComponent]: StaticInjectorError(Platform: core)[BucketGridComponent -> FilterGridComponent]: NullInjectorError: No provider for FilterGridComponent!
Not sure for what i am missing ..