我在JSF2中遇到Ajax渲染问题。我在表列中有一个命令按钮,用于从表中删除一个项目。当我单击该按钮时,将执行该操作并从数据库中删除该项,但不会从表中删除该项(视图)。当我第二次单击时,执行ajax渲染,然后更新视图。我不知道是什么原因引起的。起初我认为它可能是JSF规范问题790,但我的行动被解雇了。它只是未执行的ajax渲染。
我正在使用JSF 2.1.14 + RichFaces 4.2.3
如果你想提供帮助,这是代码的一部分
<a4j:outputPanel id="ajaxOutputPanel">
<rich:panel id="panelOrgaoList">
<div class="results" id="orgaoList">
<h:outputText value="No results."
rendered="#{empty orgaoList.resultList}" />
<h:form id="formTable">
<rich:dataTable id="orgaoTable" var="_orgao"
rowClasses="odd-row, even-row"
value="#{orgaoList.resultList}"
rendered="#{not empty orgaoList.resultList}"
styleClass="stable">
<rich:column>
<f:facet name="header">
<ui:include src="layout/sort.xhtml">
<ui:param name="entityList" value="#{orgaoList}" />
<ui:param name="propertyLabel" value="Id" />
<ui:param name="propertyPath" value="orgao.id" />
</ui:include>
</f:facet>
<h:outputText value="#{_orgao.id}" />
</rich:column>
<rich:column>
<f:facet name="header">
<ui:include src="layout/sort.xhtml">
<ui:param name="entityList" value="#{orgaoList}" />
<ui:param name="propertyLabel" value="Name" />
<ui:param name="propertyPath" value="orgao.name" />
</ui:include>
</f:facet>
<h:outputText value="#{_orgao.name}" />
</rich:column>
<rich:column>
<f:facet name="header">
<ui:include src="layout/sort.xhtml">
<ui:param name="entityList" value="#{orgaoList}" />
<ui:param name="propertyLabel" value="Tel" />
<ui:param name="propertyPath" value="orgao.tel" />
</ui:include>
</f:facet>
<h:outputText value="#{_orgao.tel}" />
</rich:column>
<rich:column styleClass="action">
<s:link view="/#{empty from ? 'Orgao' : from}.xhtml"
propagation="#{empty from ? 'none' : 'default'}"
id="orgaoViewId">
<f:param name="orgaoId" value="#{_orgao.idOrgao}" />
<h:graphicImage value="/img/view2.png" />
</s:link>
#{' '}
<s:link view="/OrgaoEdit.xhtml" propagation="none"
id="orgaoEdit" rendered="#{empty from}">
<h:graphicImage value="/img/edit2.png" />
<f:param name="orgaoId" value="#{_orgao.id}" />
</s:link>
#{' '}
<h:commandButton immediate="true" actionListener="#{orgaoList.remover(_orgao.id)}" image="/img/remove2.png">
<f:ajax render=":ajaxOutputPanel :formTable" />
</h:commandButton>
</rich:column>
</rich:dataTable>
</h:form>
</div>
</rich:panel>
</a4j:outputPanel>
谢谢!