This content has been marked as final. 
    
Show                 2 replies
    
- 
        1. Re: Pages.xml parms binding eventlvdberg Dec 21, 2010 3:45 AM (in response to toddpi314)Hi, you have the: - org.jboss.seam.preSetVariable.yourVariable
- org.jboss.seam.postSetVariable.yourVariable
 Evenst at your disposal. Leo 
- 
        2. Re: Pages.xml parms binding eventtoddpi314 Mar 24, 2011 12:44 AM (in response to toddpi314)I still can't find a good resolution for this. If I have a component that has 3 request parameters mapped through the pages.xml, I cannot find out how to know when the all of the parameters have bound for that view. I am using: @Observer("org.jboss.seam.beforePhase") public void beforePhase(PhaseEvent event) { if (event.getPhaseId() == PhaseId.RENDER_RESPONSE || event.getPhaseId() == PhaseId.APPLY_REQUEST_VALUES) { afterModelBinding(); } }But, this is not restricted to a particular component. This fires all over the place, but luckily only once... after the ApplyRequestValues What I need is a way to isolate this event down to APPLYREQUESTVALUES on the currently observing component.
 
    