在popupPanel中重新发布组件失败

时间:2013-07-29 13:29:14

标签: jsf richfaces popuppanel

我的popupPanel有一个简单的表单(用于搜索)和一个dataTable(用于搜索结果)。我在提交表单并填充失败的搜索结果后尝试重新呈现dataTable。这是源代码

<ui:composition xmlns="http://www.w3.org/1999/xhtml"
    xmlns:ui="http://java.sun.com/jsf/facelets"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:rich="http://richfaces.org/rich"
    xmlns:rd2="http://www.logica.com/raindance/webcomp"
    xmlns:a4j="http://richfaces.org/a4j" template="/layout/template.xhtml">

    <ui:define name="head">

    </ui:define>
    <ui:define name="body" >


    .......................................


    <rich:popupPanel id="ruleSearchPanel" width="600" lenght="400" autosized="true">
            <f:facet name="header">
                <h:panelGroup id="modelPanelHeader">                    
                    <h:outputText styleClass="modalpanel-header"
                        value="Search and select a rule set"></h:outputText>
                </h:panelGroup>
            </f:facet>

            <h:form id="searchForm">                
                <h:panelGrid columns="2" styleClass="center" width="100%">
                    <h:inputText id="searchForKey" value="#{authRuleRegisterManager.rulSetSearchCriteria}"/>                    
                    <a4j:commandButton id="SearchRuleSets" styleClass="plain-btn fright" reRender="ruleSearchPanel"
                            value="#{messages.search}" type="submit" action="#{authRuleRegisterManager.searchAuthRulesMap(authRuleRegisterManager.rulSetSearchCriteria)}"
                    />                                  
            </h:panelGrid>      

        <rich:extendedDataTable  id="resultRuleSets" 
            value="#{authRuleRegisterManager.searchResultsForAuthRuleSets}" selectedClass="active-row"
            rows="#{systemSettingsAction.systemSettings.paginationRows.value}"
            var="ruleSet" 
            rowClasses="odd-row-selectable,even-row-selectable" 
            selectionMode="single">

            <rich:column  label="ruleset name"
                 headerClass="left"
                 styleClass="left" width="70">
                <f:facet name="header">
                    <h:outputText value="name" styleClass="right" />
                </f:facet>
                <h:outputText value="#{ruleSet.description}" />
            </rich:column>
        </rich:extendedDataTable>                   
            </h:form>    
    </rich:popupPanel>          
        </ui:define>
    </ui:composition>

为什么我不能放弃我的数据表,我在这里想念一些东西吗? 任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:2)

您使用的版本reRender没有<a4j:commandButton>属性。您可以查看下面的标记参考

a4j:commandButton

根据我看到的代码(ui:composition未考虑),如果您想更新dataTable,只需更改

reRender="ruleSearchPanel"

render ="searchForm:resultRuleSets"

如果您对确定ID感到困惑,请查看以下链接

How can I know the id of a JSF component so I can use in Javascript

注意:您正在使用的某些组件中未定义您正在使用的某些属性。例如

rich:popupPanel

lenght rich:extendedDataTable

selectedClass rich:column

label