This content has been marked as final. 
    
Show                 4 replies
    
- 
        1. Re: how to avoid f:verbatim when including raw htmlsergeysmirnov Jun 9, 2008 1:01 PM (in response to hhuber)This is not a question to RichFaces. 
 Use JSF 1.2 or Facelets.
- 
        2. Re: how to avoid f:verbatim when including raw htmlhhuber Jun 10, 2008 4:23 AM (in response to hhuber)ok, self answering my question: 
 i tried<h:outputText escape="false"> #{someBean.rawHTML} </h:outputText>
 which didn't work.
 But<h:outputText value="#{someBean.rawHTML}" escape="false"/>
 does.
- 
        3. Re: how to avoid f:verbatim when including raw htmlhhuber Jun 10, 2008 5:05 AM (in response to hhuber)unfortunately the problem remains. using h:outputText instead of f:verbatim does not prevent the page from complete rerendering when an ajax call is issued. 
 i use JSF RI 1.2_09beta, facelets, RF 3.2.0
 kind regards,
 oliver
- 
        4. Re: how to avoid f:verbatim when including raw htmlhhuber Jun 10, 2008 5:16 AM (in response to hhuber)what can i say ... i had a phaselistener registered that printed out the whole component tree and thereby reevaluating ELs inside the page during an ajax-request. 
 sorry for wasting your precious time.
 
    