今天我花了一整天的时间试图理解为什么 xhtml 文件中的值在从<p:commandButton>
.
在我将 p:commandButton 更改为 h:commandButton 后,一切正常。这就是我声明命令按钮的方式:
<p:commandButton id="b1" style="height: 30px; width: 30px;" value="a"
action="#{turnoController.createTurno('a')}"
onclick="document.getElementById(this.id).disabled=true;"/>
使用此命令按钮它会刷新,但我不知道如何禁用它。
<h:commandButton id="b1" style="height: 30px; width: 30px;" value="a"
action="#{turnoController.createTurno('a')}"/>
我想问为什么 p:commandButton 与“刷新”页面的值不兼容???
我想要做的是在单击后禁用按钮,但还要更新所有值......
我怎样才能在 xhtml+jsf 中制作它???