在窗体中,JSF按钮禁用不起作用

时间:2015-05-05 17:47:22

标签: jsf

我想当用户在文本字段中输入一些值并提交时,该按钮应该被禁用。

但是当按钮不在表单中时它才被禁用:

作品

<h:inputText/>
<h:commandButton value="btn1" action="#{bean2.showClicked}" onclick="this.disabled=true;" />

不起作用

<h:form>
    <h:inputText/>
    <h:commandButton value="btn1" action="#{bean2.showClicked}" onclick="this.disabled=true;" />
</h:form>

我需要在表单中禁用按钮。

0 个答案:

没有答案