IE9 breaks Kupu and TinyMCE
This is a known bug with the editors, as they were developed before IE9 was available for testing, and obviously it would be too much to expect things that worked in older versions of the browser to work with the new version.
There are three solutions, other than replacing the editor (presumably new versions will appear which will work in IE9).
- Get the users to configure their browsers to run in compatibility mode
- Get the users to switch to Firefox, Chrome or Safari for editing.
- Add the following to the <head> tag of the main_template:
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" >
This *should* force the browser into IE7 compatible mode. It might be okay to make it IE8 compatible. This tag MUST go at the top of the page, above the <title> tag, or it won't work.
I'm about to add it to the bbwebsite main_template.pt for Plone 3 and 4 when SAL have tested it.
Here are some relevant links:
- http://dev.plone.org/ticket/11824
- http://evolpin.wordpress.com/2011/02/25/ie9-compatibility-and-the-meta-tag/
- http://msdn.microsoft.com/en-us/library/cc288325%28v=vs.85%29.aspx
- http://mail.google.com/support/bin/answer.py?hl=en&answer=181472