rich:modalpanel不会显示比从表单调用时更多的内容

时间:2010-11-19 06:44:15

标签: jsf richfaces

我在多次显示<rich:modalPanel>时遇到问题。 我的表单有<a4j:commandlink onclick="#{rich:component('mp')}.show()" (还试过rich:componentControl)。

这种方法运行良好一次。在模态面板中,我有一个新表单,其中一些操作附加到提交按钮(a4j:commandButton)。当此操作完成时,使用与上面oncomplete="#{rich:component('mp')}.hide()"相同的方法隐藏模态面板,并且包含commandlink的表单将被重新绑定。

现在,问题是用于显示模态面板的commandLink不再起作用。如果我在alert('something')事件中输入js onclick,我可以看到onclick事件被触发,但不会呈现模态面板。

希望这是足够的信息......如果需要,我可以稍后添加一些源代码

由于

编辑: 这里有更多代码:

<a4j:form prependId="false" ajaxSubmit="true">
    <a4j:outputPanel id="createActivityPanel">
        <h:panelGrid columns ="2">
            <h:outputLabel value="#{msg.createActivityExpectedParticipantsLabel}" />
            <h:panelGrid columns ="2">
                <h:outputLabel value="#{msg.createActivityAvailablePointsLabel}: #{sessionBean.loggedInUser.letspoints}" />
                <a4j:commandLink value="#{msg.createActivityGetMorePointsLinkLabel}" onclick="#{rich:component('convertPointsPanel')}.show()" />
                <rich:inputNumberSlider id="participantsSlider" value="#{activityRequestBean.newActivityExpectedNoParticipants}" maxValue="#{activityRequestBean.maxNoParticipants}" />
           </h:panelGrid>
       </h:panelGrid>
   </a4j:outputPanel>
</a4j:form>
<rich:modalPanel rendered="#{sessionBean.loggedIn}" id="convertPointsPanel" width="700" height="400">
    <a4j:support event="onhide" reRender="createActivityPanel"></a4j:support>
    <f:facet name="header">
        <h:outputText value="Velg poeng fra kategorier for å konvertere" />
    </f:facet>
    <f:facet name="controls">
        <a4j:form><a4j:commandButton id="closeButton" onclick="#{rich:component('convertPointsPanel')}.hide()" type="image" image="/img/close.gif"/></a4j:form>
    </f:facet>
    <a4j:form prependId="false" ajaxSubmit="true" id="convertPointsForm">
        <h:panelGrid columns ="2">
            <h:panelGroup layout="block" style="width:350px; float:left;">
                <rich:dataList var="catscore" value="#{pointsRequestBean.scores}" id="activityPointSliderList">
                    <h:graphicImage height="30" width="30" value="#{catscore.usercategoryscore.category.imagepath}" />
                    <h:outputText value="#{catscore.usercategoryscore.category.name}" />
                    <rich:inputNumberSlider maxValue="#{catscore.usercategoryscore.score}" value="#{catscore.transferredScore}" step="2" />
                </rich:dataList>
                <a4j:commandButton value="Konverter" id="convertButton" action="#{pointsRequestBean.convertPoints}" oncomplete="#{rich:component('convertPointsPanel')}.hide()" reRender="createActivityPanel"/>
            </h:panelGroup>
            <h:panelGroup layout="block" style="width:350px; float:right; border-left: 1px solid #ACBECE; padding: 10px;">
                <h:outputText value="kjøp poeng fra paypal?" />
            </h:panelGroup>
        </h:panelGrid>
    </a4j:form>
</rich:modalPanel>

请注意,我已按照建议重新渲染面板而不是表单。

1 个答案:

答案 0 :(得分:2)

你能发布XHTML代码吗?

基本上,您的一个问题可能是由于您重新表达了一个表单。一般来说,这不是一个好主意。一种解决方案是包含<a4j:outputPanel>,然后重新渲染此面板而不是表单本身。

所以不要:

<a4j:commandButton ... reRender="myForm"/>
<h:form id="myForm">
    ...
</h:form>

你可以这样做:

<a4j:commandButton ... reRender="myFormContent"/>
<h:form id="myForm">
    <a4j:outputPanel id="myFormContent">
        ...
    </a4j:outputPanel>
</h:form>

如果这不起作用,请在您的问题中添加更多代码。