我在 primefaces 中有以下按钮和面板:
<p:commandButton value="Submit"
ajax="true" actionListener="#{myBean.search}" update="resultPanel" oncomplete="panelwv.show();">
</p:commandButton>
<p:panel widgetVar="panelwv" visible="false" closable="true"
toggleable="true" id="resultPanel">
我希望在 myBean.search 执行时,屏幕上会出现一个动画。有什么帮助吗?谢谢!!