我在 primefaces 中有一个按钮和一个面板。我希望面板在按下按钮时可见。我怎么能用primefaces做到这一点?
我有代码
<p:commandButton value="Search" ajax="false"
actionListener="#{myBean.searchPatients}" onclick="panelwv.show();">
</p:commandButton>
<p:panel widgetvar="panelwv" visible="false" closable="true" toggleable="true" >
但它不起作用