Hello, 
Please, validate if this is possible.

I have master-layout.jsp with component main-component.

<stripes:layout-definition>
<stripes:layout-component name="main-content"/>
</stripes:layout-definition>

I have app-layout.jsp that I want to be rendered inside
master-layout.jsp but also I want it to declare it's own component.

<stripes:layout-definition>
    <stripes:layout-render name="/WEB-INF/jsp/master-layout.jsp >
        <stripes:layout-component name="main-content">
            <stripes:layout-component name="sub-main-content"/>

        </stripes:layout-component>
    </stripes:layout-render>
</stripes:layout-definition>

I want jsps to be able to be rendered in place of sub-main-component of
app-layout.jsp which in turn gets rendered in master-layout.jsp but it
does not seem to work.

<stripes:layout-render name="/WEB-INF/jsp/layout/app-layout.jsp" >
        <stripes:layout-component name=" sub-main-content ">
                TESTING
    </stripes:layout-component>
</stripes:layout-render>

Is there a way to make it work this way or layout components can not be
nested?



-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
_______________________________________________
Stripes-users mailing list
Stripes-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/stripes-users

Reply via email to