I'm using JSF 2.0 and RichFaces 3.3.3 on Glassfish 2.1. I've created a web application with a modal panel that works great in my computer (local server). Because of IE9 incompatibility of the specific RichFaces version, I'm using the X-UA-Compatible: IE=8
meta tag in my HTML head:
<meta http-equiv="X-UA-Compatible" content="IE=8" />
The modal panel look like this when I deploy in my local environment:
But when I deploy in the production server, I've a problem.
If I use IE with compatibility view
(source: geneanet.org)
, my modal panel look like this:
If I don't use the compatibility view, I see the modal panel but all my ajax buttons don't work.
How is this caused and how can I solve it?