internet-explorer-10

ImageButton does not fire a post back on IE10

依然范特西╮ 提交于 2019-12-30 03:26:27
问题 Recently, we tested our products on IE10 and encountered a problem about that server button control “Asp:ImageButton” are not be fired on IE10 with UpdatePanel. And the below is the sample code: <form id="form1" runat="server"> <asp:ScriptManager ID="ScriptManager1" runat="server"> </asp:ScriptManager> <asp:UpdatePanel ID="UpdatePanel1" runat="server"> <ContentTemplate> Here is the content. </ContentTemplate> <Triggers> <asp:AsyncPostBackTrigger ControlID="buttonSubmit" /> </Triggers> </asp

Export the HTML table to excel is not working in IE

狂风中的少年 提交于 2019-12-28 02:13:28
问题 Exporting HTML table to Excel is working fine in Chrome and Firefox but it is not working in Internet Explorer 10. var tableToExcel = (function() { var uri = 'data:application/vnd.ms-excel;base64,', template = '<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns="http://www.w3.org/TR/REC-html40"><head><!--[if gte mso 9]><xml><x:ExcelWorkbook><x:ExcelWorksheets><x:ExcelWorksheet><x:Name>{worksheet}</x:Name><x:WorksheetOptions><x

Printing HTML table with many columns/rows using CSS layout?

你。 提交于 2019-12-27 22:41:32
问题 I want to print a large table (so large that its rows are approx. 3 sheets of papers wide) from HTML. If possible, CSS should suffice for layout and the solution should work with different browsers. I'm currently defining the following style rules: table { page-break-inside:auto; } tr { page-break-inside:auto; } When I inspect the DOM elements e.g. in Firefox 33.0.2 (on OS X) I can see that the rules are recognized, but then when I look at a print preview ( File | Print | PDF | Open PDF in

Fancybox with an iframe cross-domain, partially rendered with Explorer10 compatibility mode

非 Y 不嫁゛ 提交于 2019-12-25 04:55:07
问题 Site that open a fancybox iframe, and in the i-frame there is a aspx - ajax page of other domain. just with IE10 in compatibility mode (No problem with others browsers), the page is just partially rendered, and when I click on a button (example to change the color of the bag) the page is correctly rendered. First rendered: After click on orange color: UPDATE: 1) On a separate iframe (without fancybox) the page works perfectly. 2) It's not a cross-domain issue, problem exists also on my pc.

IE10 - Strange Form Submission Issue

懵懂的女人 提交于 2019-12-24 18:06:17
问题 Please see the code snippet below: <!DOCTYPE html> <html> <body> <form name="editProfileForm" method="post" action="profileDataCollection.do"> <input type="text" id="credit-card" name="credit-card" onfocus="unmaskCC(this);" onblur="maskCC(this);" /> <input type="hidden" name="ccValue" value=""/> <button type="submit">Continue</button> </form> <script type="text/javascript"> function unmaskCC(field){ /*code for unmasking credit card field*/ alert("unmask called"); /*For demo purpose introduced

Lag in scrolling behavior on IE 10 and IE Edge modes

情到浓时终转凉″ 提交于 2019-12-24 15:40:35
问题 I'm trying to synchronize scrolling between two containers. But I see a lag in the scrolling of the synchronized one. Here is the fiddle for it. http://jsfiddle.net/niranjan_borawake/n9ryLdaw/2/ Sample Code snippet: $('#box2').on('scroll', function () { $('#box1').scrollTop($(this).scrollTop()); }); Note: This works fine in chrome and IE 9 as well but lags on IE 10 and IE Edge. Has any one found a workaround for this? 来源: https://stackoverflow.com/questions/30755614/lag-in-scrolling-behavior

IE 10 images not showing up

核能气质少年 提交于 2019-12-24 13:30:35
问题 I am currently attempting to fix up the huge amount of issues that IE10 is causing when viewing my site. here the current issue that's plaguing me is that all of my images are not showing up, at all. Hoping to get soem help here. If any one knows of a site that has a list of fixes for IE problems that would be appreciated as well. Taking for example one of the slider I am using I have just simple img calls <ul class="rslides" id="slider1"> <li><img id="imgMetrics" src="jScroller

freed script with hasOwnProperty

跟風遠走 提交于 2019-12-24 12:44:01
问题 I have a page containing an iframe in which I expect that within the iframe the user will navigate to many different pages - all of them in the same domain as the parent page. In the top level window I have a persistent object, let's call it appData . And in the iframe I often have lines like parent.appData[someProperty] = {a : 1, b : 2}; I'm aware of the general problem of freed script errors and I understand that I shouldn't try to call any arbitrary methods on such an object since the

How to handle mouseover and mouseleave events in Windows 8.1 Touchscreen

寵の児 提交于 2019-12-24 10:48:44
问题 In my asp.net project, I have written javascript functions on mouseover and mouseleave/ mouseout events of buttons and some other controls. Previously this website was used on non touchscreen devices. But now when I am trying to access the same website on Windows 8.1 , on Internet Explorer 10/11,the problem is, after touching a screen mouse click event is fired (which is ok in my case)and when I remove finger on screen, mouseleave event is fired (which is problematic e.g. dropdowns are not

How to make a fixed div in IE10 Mobile?

非 Y 不嫁゛ 提交于 2019-12-24 02:07:09
问题 How do you make a fixed div that works with IE10 Mobile on Windows Phone 8? The code I am currently using is: <div style="position:fixed;width:100%;background-color:blue;"> test </div> This only partially works. When the user scrolls, the div slides back into its original position. It also does not work at all in landscape orientation. Are there any alternative ways to make a fixed div that does not move that are supported on Internet Explorer 10 mobile? 回答1: div { position:fixed; width:100%;