I have a component where I would like to display configurable html in the child component. Child components are not accessible to the client. So I think what I'm looking for is content projection
<Parent>
<ng-template #editTemplate> //custom
<button>Edit Me </button>
</ng-template>
<child1>
...
<child4>
I would like to show the #editTemplate here
</child4>
</child1>
</Parent>
so Inside of child4
I have this HTML
<div>
<ng-content #editTemplate></ng-content>
</div>
However I can't get the button to display. What am I doing wrong here?
What you have here is an interesting combination of content projection and dependency injection.
<ng-template #editTemplate>
is being content-projected intoParent
componentso
Parent
has a direct reference to it via Content Child, if yourParent
component looks something like this:However,
child4
is nested several layers deep, so dependency injection is your friend here, otherwise you would need to configure a reference in each layer to complete the chain fromParent
down tochild4
.Using DI, though, you can inject the
Parent
component directly intochild4
, who can then access theeditTemplate
reference on theParent
component instance and use *ngTemplateOutlet to insert the view from thatTemplateRef
.So
child4
could look like this:Here's a StackBlitz showing this approach.