[richfaces-issues] [JBoss JIRA] Commented: (RF-10774) IE9 compatibility issues for 3.3.X

Martin Paul (JIRA) jira-events at lists.jboss.org
Thu Mar 17 10:17:45 EDT 2011


    [ https://issues.jboss.org/browse/RF-10774?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12588625#comment-12588625 ] 

Martin Paul commented on RF-10774:
----------------------------------

Workaround: Implement an application wide Filter in your webapplication and force IE9 to use another document mode:

import java.io.IOException;
import javax.servlet.*;
import javax.servlet.http.HttpServletResponse;
public class IE9CompatablityFixServlet implements Filter
{
public void init(FilterConfig filterConfig) throws ServletException
{
}
public void doFilter(ServletRequest request, ServletResponse response,
FilterChain chain) throws IOException, ServletException
{
((HttpServletResponse) response).setHeader("X-UA-Compatible", "IE=EmulateIE7"); // or IE=EmulateIE8
chain.doFilter(request, response);
}

public void destroy()
{
}
}


> IE9 compatibility issues for 3.3.X
> ----------------------------------
>
>                 Key: RF-10774
>                 URL: https://issues.jboss.org/browse/RF-10774
>             Project: RichFaces
>          Issue Type: Bug
>      Security Level: Public(Everyone can see) 
>          Components: compatibility, third-party
>    Affects Versions: 3.3.3.Final
>            Reporter: Jay Balunas
>            Priority: Critical
>              Labels: tran
>             Fix For: 3.Future
>
>
> This is an umbrella jira to help track all IE9 specific issues with RichFaces 3.3.X versions.  We will try to get any changes into the 3.3.4-SNAPSHOT as soon as possible after the 4.0.0.Final release.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira


More information about the richfaces-issues mailing list