我正在使用rich:modalPanel,每次当我想要关闭它时(我正在调用hide方法)它都没有关闭。 这是我的代码:
<a4j:status onstart="#{rich:component('wait')}.show()" onstop="#{rich:component('wait')}.hide()"/>
<rich:modalPanel id="wait" autosized="true" width="200" height="120" moveable="false"
resizeable="false" >
<f:facet name="header">
<h:outputText value="Processing"/>
</f:facet>
<h:outputText value="Wait Please..."/>
</rich:modalPanel>
答案 0 :(得分:2)
不确定这是否可以解决您的问题,但您可以尝试以下
<a4j:status onstart="javascript:Richfaces.showModalPanel('wait');" onstop="javascript:Richfaces.hideModalPanel('wait')"/>
这似乎对我有用