0

複合コンポーネントを ajax リスナーにバインドしようとしていますが、バインド変数が null に解決されます。バインド変数を本体の一部として使用すると、たとえば. #{bind}それは正しく解決します。バグだと思いますが、報告する前にセカンドオピニオンをお願いします。ありがとう

ページ:

 <html xmlns="http://www.w3.org/1999/xhtml"
        xmlns:f="http://xmlns.jcp.org/jsf/core"
        xmlns:h="http://xmlns.jcp.org/jsf/html"
        xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
        xmlns:composite="http://xmlns.jcp.org/jsf/composite"
        xmlns:jstl="http://xmlns.jcp.org/jsp/jstl/core"
        xmlns:jfunc="http://xmlns.jcp.org/jsp/jstl/functions"
        xmlns:jid1="http://mydomain.com/facelets">

<h:head></h:head>
<h:body>
    <h:form id="commentBoxForm">
        <jid1:confirmModal title="t" cssID="a" binding="#{bind}">
            </jid1:confirmModal>

            <h:commandLink value="click">
                <f:ajax execute="@this" render="@form"
                    listener="#{bind.getFamily()}" />
            </h:commandLink>
    </h:form>
</h:body>
</html>

成分:

<ui:composition xmlns="http://www.w3.org/1999/xhtml"
        xmlns:f="http://xmlns.jcp.org/jsf/core"
        xmlns:h="http://xmlns.jcp.org/jsf/html"
        xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
        xmlns:composite="http://xmlns.jcp.org/jsf/composite"
        xmlns:jstl="http://xmlns.jcp.org/jsp/jstl/core"
        xmlns:jfunc="http://xmlns.jcp.org/jsp/jstl/functions"
        xmlns:jid1="http://mydomain.com/facelets">

        <composite:interface>
            <composite:attribute name="cssID" required="true" />
            <composite:attribute name="title" required="true" />
        </composite:interface>

        <composite:implementation>

            <h:panelGroup >
                ......
            </h:panelGroup>

        </composite:implementation>
    </ui:composition>
4

1 に答える 1

0

これはバグです。詳しくはこちらをご覧ください。

複合コンポーネントbinding属性は、Ajax 呼び出しでは正しく機能しません。

于 2013-07-11T15:24:56.010 に答える