This Essbase discussion board is provided as a free service and dedicated to all the Essbase professionals out there!
  << Previous Topic | Next Topic >>Return to Index  

Making IE8 work with the Hyperion Suite

July 7 2009 at 2:45 PM
No score for this post
 
from IP address 67.148.118.226

I have had an opportunity to track down some of the issues using IE8 with the Hyperion Suite 11.x -- I have not extensively ran through all functions with IE8 so there may be some additional modifications that are required however this seems to resolve the major issue(s).

The main issue is the Bindows code is settings the DHTML zIndex property to null in some places. To avoid this you can patch the _p.setZIndex function as follows:
OLD Code:
_p.setZIndex=function(nZIndex){this.setStyleProperty("zIndex",nZIndex);

NEW Code:
_p.setZIndex=function(nZIndex){*if (nZindex==null) this.setStyleProperty("zIndex",0); else* this.setStyleProperty("zIndex",nZIndex);}

This code is contained in the core.ie.js files for most components and the core.js files for HFM. Back up the originals before making modifications.

Once you have modified these on the client side:
1) In IE8 you select Tools / Compatibility View Settings / Display all websites in Compatibility View (NOTE you may not even need to use the Compatibility View setting)
2) In IE8 Tools / Internet Options / Clear Browsing history.

One caveat is this is not an Oracle supported solution – the Oracle stance will be to back out IE8 and install IE7. Some Oracle updates will likely remove the code updates by laying down the original files.

Enjoy,

John

 
Scoring disabled. You must be logged in to score posts.Respond to this message   
AuthorReply


67.148.118.226

New Code follows

No score for this post
July 7 2009, 3:29 PM 

The *'s in prior post should not be there -- I copied this from my Oracle Forum Posting which uses those as bold indicators.

NEW Code:
_p.setZIndex=function(nZIndex){if (nZindex==null) this.setStyleProperty("zIndex",0); else this.setStyleProperty("zIndex",nZIndex);}

Regards,

John

 
Scoring disabled. You must be logged in to score posts.Respond to this message   
JC

63.112.170.65

Re: New Code follows

No score for this post
July 7 2009, 3:38 PM 

This is nice, thx.

..if only Safari or Chrome could work!...

 
Scoring disabled. You must be logged in to score posts.Respond to this message   


67.148.118.226

NEWCODE 2

No score for this post
July 7 2009, 5:53 PM 

Had the case incorrect in the if (nZIndex==null)....

NEW Code:
_p.setZIndex=function(nZIndex){if (nZIndex==null) this.setStyleProperty("zIndex",0); else this.setStyleProperty("zIndex",nZIndex);}

We've tested this now with Shared Services provisioning, HFM, Planning, EPMA and this one change seems to do the trick for all functions.

Wished you could edit prior posts. I have kept the Oracle Forum thread up to date.

Enjoy,

John

 
Scoring disabled. You must be logged in to score posts.Respond to this message   
Current Topic - Making IE8 work with the Hyperion Suite
  << Previous Topic | Next Topic >>Return to Index  

RSS feed for this forum - http://www.network54.com/Forum/58296?xml=rss. Please email hypess (at) gmail.com, if you have any questions/feedback/issues.