Hello, I use for this servlet filter. 

public class IE8CompatibleFilter implements Filter {

        @Override
        public void doFilter(ServletRequest request, ServletResponse response, 
                        FilterChain chain) throws IOException, ServletException 
{
                if (response instanceof HttpServletResponse) {
                        
((HttpServletResponse)response).setHeader("X-UA-Compatible",
"IE=EmulateIE7");
                }  
                chain.doFilter(request, response);
        }
...
-- 
View this message in context: 
http://www.nabble.com/IE8-Compatibility-Quick-Fix-tp19340728p24183949.html
Sent from the Tapestry - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org

Reply via email to