This content has been marked as final. 
    
Show                 4 replies
    
- 
        1. Re: Why don't instance RenderManager in Seam?gavin.king Jan 30, 2007 12:04 PM (in response to wna678)Use components.xml for configuring Seam components, not faces-config.xml! 
- 
        2. Re: Why don't instance RenderManager in Seam?wna678 Jan 31, 2007 7:37 AM (in response to wna678)Now, it's work fine. 
 Solution in components.xml<component name="renderManager" class="com.icesoft.faces.async.render.RenderManager" scope="APPLICATION"/> <component name="manter" scope="SESSION"> <property name="renderManager">#{renderManager}</property> </component>
 Thank you Gavin.
- 
        3. Re: Why don't instance RenderManager in Seam?newlukai Feb 9, 2007 9:53 AM (in response to wna678)Could you successfully use the RenderManager with renderManager.requestRender(this) or something? I can't do this ... 
 Thanks
 Newlukai
- 
        4. Re: Why don't instance RenderManager in Seam?wna678 Feb 9, 2007 1:41 PM (in response to wna678)You would take your bean and implements the renderable intercafe. In rendermanager set this bean for requestRender(); 
 I tried this way, and I didn't have success.
 
     
    