单击后 primefaces 命令按钮标签更改
primefaces command button label change after click
我有一个将数据插入数据库的命令按钮。单击按钮后我想更改按钮标签,然后它将被禁用。
我该怎么做?
尝试在烘焙豆中使用布尔值
在你的 bean 中
boolean buttonDisabled = false;
.xhtml
<p:commandButton "#{yourBean.buttonDisabled ? 'old label' : 'new label'}" disabled="#{yourBean.buttonDisabled}">
<f:setPropertyActionListener value="true"
target="#{yourBean.buttonDisabled}" />
</p:commandButton>
我有一个将数据插入数据库的命令按钮。单击按钮后我想更改按钮标签,然后它将被禁用。
我该怎么做?
尝试在烘焙豆中使用布尔值
在你的 bean 中
boolean buttonDisabled = false;
.xhtml
<p:commandButton "#{yourBean.buttonDisabled ? 'old label' : 'new label'}" disabled="#{yourBean.buttonDisabled}">
<f:setPropertyActionListener value="true"
target="#{yourBean.buttonDisabled}" />
</p:commandButton>