Thanks Andrew, Appreciate your help!!
The wiki solution is working fine. Nag -----Original Message----- From: Andrew Robinson [mailto:[EMAIL PROTECTED] Sent: Monday, September 29, 2008 2:13 PM To: MyFaces Discussion Subject: Re: Call action on key board enter key I believe browsers automatically submit the form if a submit button is found in the form. There are 2 wiki pages that could help you: http://wiki.apache.org/myfaces/SubmitPageOnValueChange http://wiki.apache.org/myfaces/JavascriptWithJavaServerFaces -Andrew On Mon, Sep 29, 2008 at 12:02 PM, Jalapati, Nagendra <[EMAIL PROTECTED]> wrote: > Hello Friends, > > > > How to call managed bean action on pressing Enter Key on the key board? > > > > I have a simple form with a text field and button. When user hits enter key > on the key board I should be able to call searchBean.orgSearch (same action > as commandButton) > > > > I am using Myfaces1.1 > > > > <f:view> > > <h:form id="searchForm"> > > <tr> > > > > <td><h:inputText id="empName" size="30" > > value="#{searchBean.employeeName}"></h:inputText></td> > > > > <td> <h:commandButton styleClass="button" value="Go" > > id="name_btn" type="submit" > > action="#{searchBean.orgSearch}"></h:commandButton></td> > > > > </tr> > > </h:form> > > </f:view> > > > > All suggestions are welcomed... > > > > Nag > >

