internet-explorer-11

Disable Hold Box on ie11 W8.1 Touch Device

被刻印的时光 ゝ 提交于 2019-12-12 01:38:52
问题 When using my Windows Touch Device, holding down on an area results in a an expanding box appearing which extends to about two centimetres squared. Letting go will then result in the right click menu appearing. The problem is that I want to disable the box and the menu from appearing. I have managed to prevent the context menu from appearing, but I am still left with the box. I believe the box is interfering with other functionality I have on the page. Any help much appreciated, Thanks UPDATE

MVC4 Html.BeginForm submit button in internet Explorer >9 not working

我是研究僧i 提交于 2019-12-11 20:43:43
问题 I have a form written in ASP.NET MVC4/Razor. The form post works perfectly well in Firefox and Chrome, but for some reason in Internet Explorer 10 and 11, the "Submit" button is unresponsive. (Internet Explorer 9 works also good). This is how my form in the view looks like: <div class="bla"> <table style="width:100%;"> @using (Html.BeginForm("MyAction","MyController", FormMethod.Post, new {id="myID"})) { <thead> <tr> <th class="heading highlight">Enter Registration</th> <th> <span style=

JPEG Images not loading in IE11 browser served through apache web server

帅比萌擦擦* 提交于 2019-12-11 17:35:43
问题 I'm using apacher web server to stre the static content (like images, css etc.) with my website. Below is my apache configurations set : <IfModule mod_expires.c> ExpiresActive on <FilesMatch "\.(ico|jpg|jpeg|png|gif|js|css|swf|html)$"> ExpiresActive On ExpiresDefault "access plus 30 minutes" </FilesMatch> </IfModule> <IfModule mod_headers.c> <FilesMatch ".+\.(ico|jpg|jpeg|png|gif|js|css|swf|html|woff)$"> Header set X-XSS-Protection "1; mode=block" Header set X-Content-Type-Options nosniff <

Getting memory leak after keeping IE11 open for 2 days

假如想象 提交于 2019-12-11 17:09:14
问题 Recently I found there is a memory leak in IE11 for angular6 application where i have several's tabs in application and each tab is having multiple graphs to show. There is no memory leak for sudden open and close the application but if I allowed to open a browser for 2 days with active tab open, i saw a memory spike where memory aren't being released properly and memory allocation is getting upward after that and its repeating the same pattern over the time. Is there any way to find out

SPFx web part is not loading in IE 11

久未见 提交于 2019-12-11 16:44:28
问题 I have a SPFx web part with Knockout framework. Its developed for SharePoint on premises (V1.1.0). Deployed all the Assets in the SharePoint library. Application is working fine in Chrome. But in IE, web part is not loaded in the page. Even I have not any console logs/errors. If I refresh the page with developer console open, it works. I have removed all my console logs in the application, even I have removed the console logs from the bundled JS. Still web part is not loaded. Then I thought

Document Completed Signal inside qt using QAxWidget

我是研究僧i 提交于 2019-12-11 15:22:02
问题 I'm Using qt Built-in Examples in /examples/activeqt/webbrowser, and i'm trying to use DocumentComplete SIGNAL. my purpose is using embedded Internet explorer inside QAxWidget and popup a message (with contetnt from the website) after DocumentComplete. NavigateComplete Signal is not good enough for me use... the code can be seen here : qt Web browser Example class MainWindow : public QMainWindow, public Ui::MainWindow { Q_OBJECT public: MainWindow(); public slots: void on_WebBrowser

Select all text in element in Internet Explorer 11 with Selenium WebDriver

一世执手 提交于 2019-12-11 14:02:27
问题 Selecting all text in an element with Selenium WebDriver normally works like this. WebElement element = driver.findElement(By.id("foo")); element.click(); element.sendKeys(Keys.chord(Keys.CONTROL, "a")); For internet explorer 11 I set these capabilities. capability = DesiredCapabilities.internetExplorer(); capability.setCapability("nativeEvents", false); capability.setCapability("enablePersistentHover", false); capability.setCapability("ignoreZoomSetting", true); Selecting all text then, does

OnSelectedIndexChanged not firing in production - IE 11 only

六眼飞鱼酱① 提交于 2019-12-11 12:57:44
问题 I have a 4.0 .NET site. I have the following element: <asp:DropDownList ID="ddlCounty" Width="250" AutoPostBack="true" runat="server" OnSelectedIndexChanged="ddlCounty_SelectedIndexChanged" /> This works when running locally in all browsers. Meaning, it hits the ddlCounty_SelectedIndexChanged function. In production, it works with all browsers, other than IE 11. In IE 11, it does not throw any JS errors, but never hits the server when the dropDownList is changed. I saw this fix: IE 10 Fix,

How can I debug “Back Navigation Caching” in IE?

感情迁移 提交于 2019-12-11 12:55:47
问题 I'm seeing an odd bug in IE that I'm not seeing in Chrome. Specifically, this involves some JS code not firing when a (Telerik) wizard is navigated back to it's first step. When the user clicks their "Previous" button, some data isn't being properly loaded. Hitting F12 and bringing up the developer console has shown me the following Warning: DOM7011: The code on this page disabled back and forward caching. For more information, see: http://go.microsoft.com/fwlink/?LinkID=291337 Ok, so I go to

Flex item with 0% basis overflows on IE11

老子叫甜甜 提交于 2019-12-11 12:51:58
问题 As can be seen in this simple codepen: http://codepen.io/anon/pen/Mazjyv, there's a button which is a flex item with a flex-basis of 0% . In other browsers content does not overflow the button container, however on IE11 it does. Any clue why that is? 回答1: The problem is this rule: button { flex: 0 0 0%; } You're telling the button : don't grow , don't shrink , your initial main size is 0 . Instead use: button { flex: 1 0 0%; } Also, btw, the text overflow was also happening in Chrome 46. 来源: