Suppose I have several f: event tags for handling the same event:
<f:event type="preRenderView" listener="#{myBean.action1()} /> <f:event type="preRenderView" listener="
Is the execution order guaranteed?
Edit:
To clarify why I need them to be executed in a specific order, here is my use case:
myBean # action1 is actually a setter
myBean # action2 is a method that works in the field specified by action1
In my opinion, the order is unreliable, so I just put them as EL expressions inside my layout like:
<p:ouputPanel>
source share