---- deathstar64 <[EMAIL PROTECTED]> schrieb: > > 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?
When using JSF, don't think about HTML forms. Think about Swing (or MFC, or Gnome or KDE, or VisualBasic or Delphi or any other similar GUI framework you may be familiar with). In all those frameworks, you associate a *callback* with a *button* (or other "command type" widgets). And JSF works exactly the same. Set the action attribute of a button, and forget about the address that the form submits to. Regards, Simon

