我正在使用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
的是,它不是rich:dataTable 的孩子!
你能帮我解决这个问题吗?很高兴知道这个问题的根源是什么