POST « Form « JSF Q&A





1. JSF form post with AJAX    stackoverflow.com

I want the following form to use AJAX. So the comments are shown after clicking the command button and without reloading the page. What needs to be changed, using Java Server ...

2. Form post data is shown in the post header element    stackoverflow.com

I have form where I am entering all the data and on the submit button. I am sending the data for the processing. But what I noticed is that I can ...

3. JSF post form data    coderanch.com

4. HTTP Post to JSF form    coderanch.com

5. JSF Form post to external URL    coderanch.com

Tim Holloway wrote:If you're going to send form data to a non-JSF target, use the vanilla HTML

tag, not the JSF tag. That applies to both "external" URLs and non-JSF targets (JSPs and servlets) within a JSF app. The JSF form tag is designed to facilitate JSF postback operations, which is why it has no "action" attribute. Hi Tim! ...