I have a simple form with an inputText and a commandButton. Normally if I use onkeypress="if (event.keyCode == 13) this.submit();" I can submit the form pressing the Enter key. In the context of my application though this does not work. When I press the Enter key, the inputText is cleared but the form is not submitted and the action of the commandButton is not called. I'm using Icefaces and I'm seeing some ice.captureEnterKey in my page's source code but I don't know if that's relevant.
Page Code:
<h:form id="form1">
<h:inputText value="#{myBean.query}"/>
<h:commandButton id="search" value="Search" action="#{myBean.submitQuery()}" onkeypress="if (event.keyCode == 13) this.submit();"/>
</h:form>
UPDATE: I've managed to make it work like this:
`<h:form id="form1">
<h:inputText value="#{myBean.query}" onkeypress="if (event.keyCode == 13) document.getElementById('form1:search').click();"/>
<h:commandButton id="search" value="Search" action="#{myBean.submitQuery()}"/>
</h:form>`
The problem now is that I get this weird error before I get navigated to the next page:
Network connection interrupted. Reload this page to try to reconnect.
The error only appears when I submit the form by pressing Enter. If I press the button with the mouse it does not appear. Also if I remove Icefaces libraries everything works fine.
onkeypresscode should be in your<h:inputText>, not in your<h:commandButton>, and try to addtype="submit"tag attribute to your commandButton. – Luiggi Mendoza Aug 5 '12 at 1:38