[jboss-dev-forums] [Design of JBoss Portal] - Re: Admin content editor plugin
julien@jboss.com
do-not-reply at jboss.com
Sat Feb 24 20:17:37 EST 2007
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#4021805
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4021805
More information about the jboss-dev-forums
mailing list