I want when user entered some value in text field and submit, the button should disabled.
But it just disabled when button is not in a form:
Works
<h:inputText/>
<h:commandButton value="btn1" action="#{bean2.showClicked}" onclick="this.disabled=true;" />
Not works
<h:form>
<h:inputText/>
<h:commandButton value="btn1" action="#{bean2.showClicked}" onclick="this.disabled=true;" />
</h:form>
I need to disable button in form.