Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Richfaces 3.3.3 Issue with IE9

My application is currently running with JSF 1.2 and rich faces 3.3.3 Final. I'm having issues with rendering rich faces skin over Internet Explorer 9 Final version. It doesn't load rich faces skin, and from network tab i can view that this file is received as 'text/html' rather than 'text/css' with a get status of 500. I got this information from the following link, IE9 + RichFaces Rendering problem

A possible solution to it is to move to RF4 but for it we have to move to JSF 2.0 and thats very time consuming process and very expensive too.

I have tried the solution specified in thread http://community.jboss.org/thread/156720 by Kenneth Christensen as well, but still it didnt help me ;-(

Can any one please suggest a more suited solution for it :-)

Thanks, Ubaid

like image 794
Ubaid Raja Avatar asked Oct 11 '22 15:10

Ubaid Raja


2 Answers

Patch to solve the problem RichFaces 3.3.3.Final xIE9

http://ruleoftech.com/2013/patching-richfaces-3-3-3-ajax-js-for-ie9

like image 65
elciospy Avatar answered Oct 14 '22 03:10

elciospy


put this in your page:

<head>
 <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7; IE=EmulateIE8">
</head>
like image 31
xbmono Avatar answered Oct 14 '22 03:10

xbmono