On 11/16/05, Martin Marinschek <[EMAIL PROTECTED]> wrote: > Just one action event is possible on each request.
Maybe I'm misunderstanding the question, or maybe I'm misinterpreting the behavior, but I think any number of action events can fire on each page submit. This is assuming by "action event" that you mean something that is an ActionSource/ActionListener/FacesListener. I'm pretty sure that every component that has registered ActionSources (however named) will queue up all of these events. As for the timing, it's based on the order of the components in the component tree. Each action listener is triggered at the end of either the apply values phase or the end of the process validations phase. And the final "action" event of the UICommand is processed at the invoke application phase.

