Julian Ray wrote:

Does anyone know if this is possible, and if so, what is the correct mechanism
<t:aliasBean alias="#{pageBean}" value="#{Report}">

<f:subview id="reportgui">

<jsp:directive.include file="#{pageBean.reportTemplate}" />

</f:subview>

</t:aliasBean>

The JSP directive obviously cannot interpret the JSF value binding but is there an alternative way to dyncamically include a page without having to use tiles or facelets which seems to be overkill for this. Thanks

Why you don't use rendered.
<f:subview id="reportgui" rendered="FlagFromBean">
</f:subview>

Reply via email to