On 9/7/05, Dave <[EMAIL PROTECTED]> wrote:
Is Invoke Application = call action binding method such as submit() in action="" ? 

Essentially it is.  Indeed, a JSF implementation actually *performs* this call by adding its own ActionListener to the end of the chain of action listeners  (if any) that the application defines.  It is this default listener that actually calls your action method.

And, because this listener is always last, a side effect is that your own action listeners are always called first.

Craig

Reply via email to