gpt4 book ai didi

button - 按下按钮时显示面板

转载 作者:行者123 更新时间:2023-12-04 14:31:22 25 4
gpt4 key购买 nike

我在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" >

但它不起作用

最佳答案

你的代码有错别字,你需要的属性是 widgetVar :

<p:commandButton value="Search" ajax="false"
actionListener="#{myBean.searchPatients}" onclick="panelwv.show();">
</p:commandButton>
<p:panel widgetVar="panelwv" visible="false" closable="true" toggleable="true"/>

如果你根本不想渲染你的面板,你应该考虑使用 rendered组件的属性。

关于button - 按下按钮时显示面板,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12902588/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com