我正在使用richfaces 3.2.3,我在下面遇到了一个有趣的错误:
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
xmlns:s="http://jboss.com/products/seam/taglib"
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:a4j="http://richfaces.org/a4j">
<f:subview>
<a4j:outputPanel id="commentariesAjaxContainer" ajaxRendered="true">
<rich:dataTable id="commentaries" var="commentary"
value="#{someBean.commentaries}" rows="10" rowClasses="odd-row, even-row"
styleClass="stable"
reRender="commentariesDS">
<f:facet name="header">
<h:outputText
value="#{messages['commentaries.title']}"/>
</f:facet>
...
<rich:column width="10%" styleClass="rich-grid-edit-column">
<f:facet name="header">
<h:outputText
value="#{messages['historic.commentary.action']}"/>
</f:facet>
<h:panelGroup>
<h:commandButton id="commentaryactioneditLnk" styleClass="image-edit-copy-delete"
image="/img/edit16x16px.png"
value="#{messages['historic.commentary.action.edit']}"
action="#{someBean.editCommentary()}"/>
</h:panelGroup>
</rich:column>
</rich:dataTable>
<rich:datascroller fastControls="hide"
id="commentariesDS" for="commentaries" renderIfSinglePage="false">
<ui:include src="layout/rich-datascroller-facets.xhtml"/>
</rich:datascroller>
</a4j:outputPanel>
<h:commandLink action="#{someBean.createCommentary()}">
<h:panelGrid columns="2">
<h:panelGroup>
<h:outputText styleClass="image-link-label-medium"
value="#{messages['customerCare.historic.commentary.action.create']}"/>
</h:panelGroup>
<h:panelGroup>
<h:graphicImage value="img/buttons/add_a_comment_icon-24x24.png"/>
</h:panelGroup>
</h:panelGrid>
</h:commandLink>
</f:subview>
</ui:composition>
因此,命令链接显示为带嵌套标签和图标的链接。它工作正常,直到我点击rich:datascroller
按钮 - 在通过ajax请求重新呈现数据表后,我的链接被破坏 - 所有嵌套元素都成为它的兄弟,而不是子节点(因此 - 链接变为空)。更奇怪的是因为h:commandLink
不是富人的孩子:dataTable!
你能帮我解决一下吗?知道这个问题的根源是很好的
答案 0 :(得分:0)
我认为问题出现在oncomplete调用中,因为它正在“我理解”页面中的一些更改:
<rich:datascroller oncomplete="_globalTsmModule.renderGlobalMessagesBlock();"...
您可以对此组件使用ajax状态,如:
<a4j:status id="a4jstatus" onstop="_globalTsmModule.renderGlobalMessagesBlock();"/>