You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tapestry.apache.org by Valentin Yerastov <xi...@gmail.com> on 2009/06/24 14:35:16 UTC

Re: IE8 Compatibility Quick Fix

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-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org