yes, that's how JSF works.
It does postbacks.

when you are interested in performing some "tasks" on the submitted values,
do this

<h:form>
....
<h:commandButton action=#{bean.myAction}" .../>
</h:fomr>

public String myAction()
{
  // do the work
  return "tellMeWhereToGo";
}

On Feb 5, 2008 11:34 AM, deathstar64 <[EMAIL PROTECTED]> wrote:
>
> Hello,
>
> I am using the tag <h:form> supplied by myfaces to produce an html form. But
> I want to give a specific action that the form should have when it is
> rendered. But myFaces gives an .."automatic" one when it renders the
> component. Any thoughts on that?
>
> Thanks,
>
> Antony
> --
> View this message in context: 
> http://www.nabble.com/%3Ch%3Aform%3E-tag-%21-tp15287059p15287059.html
> Sent from the MyFaces - Users mailing list archive at Nabble.com.
>
>



-- 
Matthias Wessendorf

further stuff:
blog: http://matthiaswessendorf.wordpress.com/
sessions: http://www.slideshare.net/mwessendorf
mail: matzew-at-apache-dot-org

Reply via email to