[
https://issues.jboss.org/browse/RF-10774?page=com.atlassian.jira.plugin.s...
]
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