Is it possible to retrieve child components of another component? For instance, consider the following QueryList:
@ContentChildren(SysColumn) syscolumns: QueryList<SysColumn>;
This QueryList will contain all instances of the SysColumns class, which is great. However, I am in need of a list of the child components within each SysColumn. In the HTML structure below:
<parent>
<sys-column>
<child></child>
</sys-column>
<sys-column>
<child></child>
</sys-column>
</parent>
When performing a Foreach on the QueryList, it only displays the two SysColumns. How can I access the inner components as well?