internet-explorer-11

The window object does not have the properties attached to it by the page that created it

拥有回忆 提交于 2019-12-06 07:32:10
I use the window.open(url, target) to open a url in a new tab/window. Before doing that, I set some properties on the newly opened window object with the intention of passing data from this page, the creator of the new window, to the newly created window. In all browsers except Internet Explorer, the code works fine. The newly created page is able to read back the properties from the global window object representing its window. However, only in Internet Explorer 11, the window object in the newly created window does not have the properties passed in by the previous page. Below is example code

Preventing high-contrast mode in Edge from adding background to text

旧城冷巷雨未停 提交于 2019-12-06 05:39:56
I'm working to adjust some components so that they all function and look good in high-contrast mode. Edge seems to be adding a black background under all text that IE11 does not add. I can't seem to find a way to target this background in CSS, or any other way to normalize the behavior between the two browsers. For example, let's say I have the following: <div class="SelectedText"> Text! </div> And let's say I assigned background-color: cyan; and color: black; to the .SelectedText div. In this scenario, IE11 renders it as expected with the div and text having the assigned colors. However, in

Print button not available in ReportViewer using IE11

北战南征 提交于 2019-12-06 04:58:38
问题 So we noticed that the print button in our ReportViewer ( Version=10.0.0.0 ) is gone after upgrading to IE11 . This is how it looks like in IE10 : After doing some research, we found that other people are also reporting this problem (i.e. here), but did not find a solution yet. Using the compability mode would be a workaround option, but is not a viable/fitting solution for clients. Did anyone figure out how to fix this? 回答1: These weeks ,we face the same problem. Finally we find some way to

react with IE11 is not working, displaying blank screen

为君一笑 提交于 2019-12-06 04:50:58
when trying to load application in IE11 it just shows blank screen and errors with syntax error on this line class App extends __WEBPACK_IMPORTED_MODULE_0_react__["Component"] { my package.json { "name": "ccp-react", "version": "1.0.0", "license": "MIT", "scripts": { "start": "webpack-dev-server", "build": "webpack" }, "private": true, "dependencies": { "babel-plugin-lodash": "^3.3.2", "babel-preset-es2015": "^6.24.1", "babel-preset-react-optimize": "^1.0.1", "babel-preset-stage-1": "^6.24.1", "bootstrap": "^3.3.7", "classnames": "^2.2.5", "create-react-class": "^15.6.2", "cross-env": "^5.1.3"

Angularjs' $http.get only executed once in IE11

浪尽此生 提交于 2019-12-06 04:03:28
问题 I'm learning angularjs, and as a test project I'm polling a server that returns a list of active processes (their pids) and displaying these. The client code looks like this: <!DOCTYPE html> <html> <head> <script type="text/javascript" src="static/angular/angular.js"></script> <script> function ProcessCtrl($scope, $http, $interval) { $scope.ReloadData = function() { var result = $http.get("processdata", {timeout:1000}); result.success(function(data,status,headers,config) { $scope.processes =

HTML5 Local Storage data not reflected across active tabs/windows in IE 11

Deadly 提交于 2019-12-06 03:43:48
We have created a functionality where in we provide users to works with forms in an Offline Mode. We are using HTML 5 Local Storage to store all the offline data. All the forms have their own html files (for example:form-1.html,form-2.html.) We have a parent html page which makes use of an iframe to load the requried html file based on the form selected from the drop down list. After the user have made the modification in offline mode,the user can sync in their changes by logging to the ASP.Net WebSite. The problem ,we are facing is that the copy of Local Storage that in modified by the user

java.net.ConnectException: Failed to connect to localhost error with Selenium 3.11.0 with IEDriverServer and IE 11 on Windows 10

社会主义新天地 提交于 2019-12-06 03:12:27
I am very new to selenium and trying to set up selenium in my laptop to begin. I am unable to invoke IE from my simple code. The details are given below. Can you please help me to understand where the issue is IE version: IE 11, IE Driver: 64-bit, OS: Windows 10 64 bit, Selenium version: 3.11 Error: Started InternetExplorerDriver server (64-bit) 3.9.0.0 Listening on port 29313 Only local connections are allowed Exception in thread "main" org.openqa.selenium.WebDriverException: java.net.ConnectException: Failed to connect to localhost/0:0:0:0:0:0:0:1:29313 Build info: version: '3.11.0',

Rich Text (YUI) Editor Broken on IE11

天涯浪子 提交于 2019-12-06 02:33:10
问题 I'm running Internet Explorer 11 and YUI 2: Rich Text Editor seems not working. Please see attached screen shot for more detail. Any ideas how to fix this under IE11? 回答1: For IE changed its User-Agent, YUI(2.9) need a surgery. Modify yahoo-dom-event.js: Find this: YAHOO.env.parseUA, then at last add something that tell YAHOO.env.ua now is undering IE 11. like this: if (g.ie == 0 && c.indexOf('Trident') != -1){ g.ie = 11; } Modify editor.js: Find the _setInitialContent function, and after the

JNLP files won't launch from IE11 on Windows 10

坚强是说给别人听的谎言 提交于 2019-12-06 02:12:49
问题 Since May 9, after a windows 10 update, on IE11 11.0.40, JNLP files wont launch from IE, but in a computer with IE version 11.0.34 it work perfectly. Any ideas? Thanks in advance 回答1: The problem is solved in Java 8 u162. Now you can have Java RE x86 and x64 installed and jnlp will open as it should in Internet Explorer. We are using sitelist / Enterprise Mode to redirect jnlp urls from Edge to Internet Explorer. 回答2: I had a problem opening a jnlp file, no matter what, trying to associate it

Print PDF Report in IE 11

点点圈 提交于 2019-12-06 02:00:35
As the tile suggest, I am trying to print a PDF report specifically on IE 11. The following snippet of code works will in chrome, but when it come to IE11, all hell breaks loose; nothing works. To give you a background, I am developing Angular 5 reporting application. Here the user can view, download and print the report. I was able to achieve all the above functionalities except for printing on IE 11! const iframe = document.createElement('iframe'); iframe.style.display = 'none'; iframe.src = window.URL.createObjectURL(new Blob([result], { type: 'application/pdf' })); document.body