Hi all, I want to render items in a datalist via dynamic includes.
Sample:
<t:dataList value="#{MyController.myLinks}"
var="aLink"
...
<ui:include src="#{aLink.aPath}
...
</t:dataList>
This does not work with facelets ui:include because it is evaluated only
once and too early.
How can I accomplish dynamic includes with JSF 1.2 and facelets?Currently I use a lot of groups with simple rendered checks but I want to get rid of them for better performance and reuseability .
Michael

