我正在尝试使用a4j:status以及richpaneltab。我有3个标签。当我只在其中一个选项卡中使用a4j:status时,它工作正常。但是,如果我将其添加到另一个选项卡,则会为“status”抛出重复的状态ID execption。 我尝试为a4j:status添加一个id,并添加了forceid = true。但是现在,a4j:状态消息和图像没有显示出来。 我也尝试在每个标签的下面列出的代码周围添加a4g:区域。但同样,a4j:状态信息和图像没有显示出来。
<div align="center">
<rich:modalPanel id="panel2" autosized="false" keepVisualState="false" style="text-align:center" width="315" height="100" >
<h:panelGrid columns="1">
<h:column>
<h:outputText value="Processing Request...." style="color:green;font-size:10px;font-weight:bold;"/>
</h:column>
<h:column>
<h:graphicImage value="/images/ajax/ajax-loader.gif" />
</h:column>
</h:panelGrid>
</rich:modalPanel>
</div>
<div align="center">
<a4j:status onstart="javascript:Richfaces.showModalPanel('panel2');" onstop="#{rich:component('panel2')}.hide();" />
</div>
由于