Focal Point
[CLOSED]WF 8.0.08 + IE11 - Issues with GUI-designed parameter screens in WF 7.7.03

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/9007003976

November 10, 2015, 04:07 PM
Francis Mariani
[CLOSED]WF 8.0.08 + IE11 - Issues with GUI-designed parameter screens in WF 7.7.03
We're on WF 8.0.08. I volunteered to test all our WF content because we're switching from IE9 to IE11.

I've had several problems with pages designed in WF 7.7.03 and then never edited once we moved to WF 8.0.08. They work in IE9 but not in IE11. For one parameter screen (dare I call it an Info App?) one very simple Year drop-down list (populated by an internal fex) does not get populated. On several parameter screens where we use output format icons - the images do not display. I've been able to fix this by opening the page in Dev Studio HTML Composer and then saving without making changes. Of course, behind the scenes, a lot is getting changed.

Anyone else deal with this?

This message has been edited. Last edited by: <Emily McAllister>,


Francis


Give me code, or give me retirement. In FOCUS since 1991

Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
November 10, 2015, 05:51 PM
CoolGuy
To clarify, you are working in DevStudio and not AppStudio in 8.0.08? If so, I haven't used DevStudio since February or so. My mindset is centered around AppStudio now. I can't imagine DevStudio's HTML Composer being much different in functionality than AppStudio's HTML Composer tool save for everything being in the ribbon up top now instead of deeply nested dialog pop-ups.

Have you tried recreating/relinking the images from scratch via the GUI designer? I know in 8 the links to everything have gone to absolute paths now if you are working under Content. Maybe the links just needed updated for those. Cool trick with saving an untouched page within DevStudio. Didn't know you could do that.

In regards to your year value drop down list based off of an internal/embedded pop. request, can you run just the request and get it to pump out the correct XML value sets? If so, have you tried populating the control with that request but making it an external request instead? I know we've had similar issues in that department a few months back, and I thought that was what we did to fix things. That, or it was the other way around. Can't quite remember.


8.2.02M (production), 8.2.02M (test), Windows 10, all outputs.
November 11, 2015, 09:18 AM
GavinL
quote:
They work in IE9 but not in IE11

If you view source, you will see IBI forces Compatibility Mode for IE. In fact, we have seen that in WF8.0.07 they force portals to use IE10, but in WF 8.0.09, they force it to use IE8. Which may be what your running into. Try going into your browser and making sure you don't have compatibility mode checked and that you don't have the domain added to your compatibility settings.



- FOCUS Man, just FOCUS!
-----------------------------
Product: WebFOCUS
Version: 8.1.04
Server: Windows 2008 Server
November 11, 2015, 10:07 AM
Francis Mariani
Gavin, I checked my compatibility settings and nothing is set. We've sometimes overridden what Dev Studio sets the page to. We sometimes ad this to the top:

<!DOCTYPE HTML>
<meta http-equiv="X-UA-Compatible" content="IE=edge">


CoolGuy, the point is, whatever I do, I have to open each offending web page and do something with it - most likely open/save is enough. I wouldn't dare use App Studio, as far as I've been told, the first usable version is 8.1.04 and we're on 8.0.08. And opening/saving Dev Studio 7.7.03 created pages in App Studio 8.0.08 will only cause heartbreak.


Francis


Give me code, or give me retirement. In FOCUS since 1991

Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
November 11, 2015, 10:51 AM
CoolGuy
True stuff Francis...true stuff. Sucks to have to redo so much just to move to a newer tool set.

From my experience, we've had to recreate from scratch every HTML document brought over from 7.x to 8.x thus far. So, yeah, hold out as long as your site can with getting on board with AppStudio. If I remember correctly, either DevStudio 8.1.05 or 8.2.00 will be the last of its iterations. Good luck!


8.2.02M (production), 8.2.02M (test), Windows 10, all outputs.
November 11, 2015, 02:20 PM
Francis Mariani
If the web page is referenced in a B.I. Portal page, setting the X-UA-Compatible meta header to edge or 9 doesn't make any difference, because BIP sets it to 10.

<!DOCTYPE html>

<html>
	<head>
	    <title>BI Portal</title>
		<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
		<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE10" >		
		<meta http-equiv="MsThemeCompatible" content="yes">
		<meta http-equiv="ImageToolBar" content="no">
		<link type="text/css" rel="StyleSheet" href="/ibi_apps/bindows/css/bimain.css">
		<script type="text/javascript" src="/ibi_apps/bindows/js/application.js"></script>
	</head>
	<body>
		<script type="text/javascript">application.start("/ibi_apps/bindows", "/ibi_apps/tools/portal/resources/markup/wfbiportalrun.jsp?&ViewID=VR-IGV5ZELR1XVE1Z32J526&ViewName=ie11_test&ViewTitle=ie11_test&SessionTimeout=7200000")</script>
	</body>
</html>



Francis


Give me code, or give me retirement. In FOCUS since 1991

Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server