This content has been marked as final. 
    
Show                 2 replies
    
- 
        1. Re: How to reRender stuff dynamicallyshandor Jun 19, 2008 7:51 AM (in response to shandor)...No ideas ??? 
 Someone ?
 .
 .
 .
 So far I found an undocumented class :
 org.ajax4jsf.context.AjaxContextImpl
 that has some methods which seem relevant...
- 
        2. Re: How to reRender stuff dynamicallyshandor Jun 19, 2008 10:50 AM (in response to shandor)I have a solution!!! 
 So anyone who is intersted in reREndering components programatically here it goes:FacesContext context = FacesContext.getCurrentInstance(); UIViewRoot uiroot = context.getViewRoot(); UIComponent tbl = uiroot.findComponent("eazap:tabbed_pane_list"); AjaxContext.getCurrentInstance(FacesContext.getCurrentInstance()).addComponentToAjaxRender(tbl);
