I worked a bit on it today, the cool thing is that I have added a facelet tag handler
which allows to create a notion of nested context, very similar to ui:include but for
nested content. For example
| <h:outputText value="#{a.b.c}"/>
| <h:outputText value="#{a.b.d}"/>
|
can be rewritten
| <pfc:context>
| <ui:param name="e" value="#{a.b}"/>
| <h:outputText value="#{e.c}"/>
| <h:outputText value="#{e.d}"/>
| </pfc:context>
|
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4021805#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...