This content has been marked as final. 
    
Show                 2 replies
    
- 
        1. Re: richfaces editor rerender not show with Google Chromenbelaevski Apr 14, 2010 5:45 PM (in response to rsoika)Hi Ralph, Try switching from xHTML to HTML mode by setting: <f:view contentType="text/html"> 
- 
        2. Re: richfaces editor rerender not show with Google Chromersoika Apr 15, 2010 2:07 PM (in response to nbelaevski)Thanks a lot!, yes this works perfect. I did not know about this magic attribute. Now I changed all my facelet templates like this: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml" 
 xmlns:jsp="http://java.sun.com/JSP/Page"
 xmlns:ui="http://java.sun.com/jsf/facelets"
 xmlns:h="http://java.sun.com/jsf/html"
 xmlns:c="http://java.sun.com/jstl/core"
 xmlns:f="http://java.sun.com/jsf/core"
 xmlns:a4j="http://richfaces.org/a4j"
 xmlns:rich="http://richfaces.org/rich"><f:view contentType="text/html"> <head> 
 .......
 .........
 </f:view>
 </html>
 
    