internet-explorer-11

“Object doesn't support this property or method” error in IE11

限于喜欢 提交于 2019-11-28 05:19:33
I am getting the error Critical Error: Object doesn't support this property or method addeventlistener while accessing the InfoPath form page (using InfoPath enabled list form e.g. displayifs.aspx) in IE 11 browser. This error is specific to IE 11, the page is opening properly in IE 10 and below. According to this MSDN post , IE 11 supports addEventListener. Anybody have an idea on this? user3116631 This unfortunately breaks other things. Here is the fix I found on another site that seemed to work for me: I'd say leave the X-UA-Compatible as "IE=8" and add the following code to the bottom of

Make a grayscale image with css in IE11 running in Quirks mode

旧城冷巷雨未停 提交于 2019-11-28 04:51:35
问题 I need to convert some colorful images on an internal legacy web application to grayscale. I figured the easiest way would be to use CSS filters. The users of this application access it via IE11 due to a Group Policy. This application must also be run using Quirks (IE5) document mode, otherwise crazy things happen (rendering issues, javascript not working, etc). I have tried the following code (as well as code from here, here, and here) img.desaturate { -webkit-filter: grayscale(100%); filter

CrossPostback ,AJAX Controls and ASP.NET generated postbacks work for .NET 4.5 , not .NET 4.0 in IE 11

我的未来我决定 提交于 2019-11-28 04:09:45
问题 I had posted and answered the question earlier.WebResource.axd not working with Internet Explorer 11 But I thought the hotfix had fixed the issue(CrossPostback ,AJAX Controls and ASP.NET generated postbacks not working) but after installing in QA , it didn't work and we realized it was .NET 4.5 that made things work . I am under the process of comparing .NET frameworks folder between .NET 4 and .NET 4.5. What I needed to ask what could in .NET 4.5 really resolve the IE 11 issue. The major

Strange behaviour with spliting a string in Javascript

爷,独闯天下 提交于 2019-11-28 04:06:04
问题 I am trying to do something relatively simple. I have a date in this format dd/MM/yyyy eg: var newDate = "‎11‎/‎06‎/‎2015"; And I want to convert it to a date. This code only works in Chrome and Firefox: new Date(newDate) In IE11 I get Nan So I am trying to do this: var parts = newDate.split("/"); var year = parts[2].trim(); var month = parts[1].trim(); var day = parts[0].trim(); var dt = new Date(Number(year), Number(month) - 1, Number(day)); Which should work, but I have encountered a very

IE 11 - Is there a way to check then enable / disable enterprise mode?

拟墨画扇 提交于 2019-11-28 04:03:10
问题 I am out of wit as how to solve this problem in Javascript or HTML. I have customers currently using web applications built for ie9 and under. These legacy applications do not work well on IE11. IT solutions was to enable enterprises mode. Enterprises mode was designed to avoid "common compatibility problems associated with web apps written and tested on older versions of Internet Explorer". See: http://www.eightforums.com/tutorials/43972-ie11-enterprise-mode-enable-disable-users.html

Table cells height calculated differenly in IE11

无人久伴 提交于 2019-11-28 03:10:49
问题 The problem I face is IE 11 seem to have inconsistent <td> inner height across single <tr> while other browsers keep it the same. Here's a pen illustrating my problem: http://codepen.io/anon/pen/emKEBZ In my layout I have an absolutely positioned pseudo-element (green border) which I want to display on a (outside) <td> . I'd like it to be always as high as the whole <tr> it is in. The content of <td> s is dynamic - I have no control over it's size (like I do in the pen). I gave it height: 100

Flex items overlapping item in IE11

耗尽温柔 提交于 2019-11-28 02:20:26
I have two divs: top div contains a long text that takes up several lines lower div has min-height and flex-grow: 1 When I reducing the window to the scroll appeared, then in chrome everything is displayed correctly. But in IE11 top div is reduced to one line, and its text is on top of the bottom div. I can fix it only with set some width for content of top div (it work with fixed width, or calc width, but not work with percentage width) How can I fix it without setting width or with percentage width ( width:100% )? body, html { height: 99%; padding: 0; margin: 0; } .flexcontainer { width: 25%

How to get mshtml.IHTMLDocument6 or mshtml.IHTMLDocument7?

被刻印的时光 ゝ 提交于 2019-11-28 02:04:37
问题 I am using IE11 in Windows 7. Then I added a reference in C# project c:\Windows\System32\mshtml.tld and try to get mshtml.IHTMLDocument6 or mshtml.IHTMLDocument7, but VS2013 doesn't see it. I can only get mshtml.IHTMLDocument, mshtml.IHTMLDocument2 .. mshtml.IHTMLDocument5. IHTMLDocument7 interface https://msdn.microsoft.com/ru-ru/library/windows/hardware/ff975572 回答1: Select the MSHTML assembly reference, look at its Path property and you'll see the problem: C:\WINDOWS\assembly\GAC\Microsoft

Make a grayscale image with css in IE11 running in Quirks mode

旧城冷巷雨未停 提交于 2019-11-28 01:25:40
I need to convert some colorful images on an internal legacy web application to grayscale. I figured the easiest way would be to use CSS filters. The users of this application access it via IE11 due to a Group Policy. This application must also be run using Quirks (IE5) document mode, otherwise crazy things happen (rendering issues, javascript not working, etc). I have tried the following code (as well as code from here , here , and here ) img.desaturate { -webkit-filter: grayscale(100%); filter: gray; filter: grayscale(100%); filter: url(desaturate.svg#greyscale); } with no effect. Given this

Internet Explorer VBA Automation Error: The object Invoked has disconnected from its clients

倖福魔咒の 提交于 2019-11-28 01:14:09
问题 I'm trying to write code that will read a value from Excel, look it up in an internal web based system and store the results back in the Excel. It reads the Excel with no problem, opens Internet Explorer with no problem, but when I then try to reference what's been opened, I get the above error. The line "ie.Navigate url" works, but the next line "Set DOC = ie.Document" generates the error. Any ideas on what's causing this? Here's my code: Public Sub getClient() Dim xOpen As Boolean xOpen =