Can you please elaborate on Steps 8, 9 and 10.
I have a JSP page with simple MyFaces components like two inputTexts and a button. What I want is whatever the user types in the first textbox should get into second textbox on click of the button. I am trying to use Ajax for this. My approach is to have a separate Ajax Servlet and return the response to the JSP.
When I
test, I see that the response is captured by JSP page and the textbox gets the data into it.... but just for a second or so. After that the page appears to reload and the textbox loses its data and is blank.
I guess I am not implementing the steps correctly.
Can someone please suggest a simple Hello World for this.
Thanks in advance.