Алексей
Алексей

Reputation: 11

Composite component recursion

I want to do a recursive call to the composite component. Those. something like

<composite:interface componentType="myComp">
    ...
</composite:interface>

<composite:implementation>
    <span id="#{cc.clientId}">
        <c:if test="#{cc.showMyComp}">
            <cust:myComp />
        </c:if>
    </span>
</composite:implementation>

But jstl in this case does not work correctly and ajax requests do not work inside the nested component. If I write in WEB.xml

<context-param>
    <param-name>javax.faces.PARTIAL_STATE_SAVING</param-name>
    <param-value>false</param-value>
</context-param>

Then everything works, but my component is embedded in an application where partial state saving is used. How correctly to do recursion in composite component? I use jsf MyFaces 2.0.

Upvotes: 1

Views: 119

Answers (0)

Related Questions