HI.
AjaxFileUpload: Drop file here is not working upload in EI10 for Win 8 ??
Comments: Yes, here is why. Any suggestions how to get our modified local javascript files to supersede the original Ajax javascript version of the same name? The "AjaxFileUpload.Utils.pre.js" file includes this statement: ``` this.checkHtml5BrowserSupport = function () { // IE10 Desktop (NOT Metro version) has FormData but it's buggy, // so we want exclude it from Html5 supported browser. var browser = Sys.Browser; if (browser.name == "Microsoft Internet Explorer" && browser.version <= 10) return false; return window.File && window.FileReader && window.FileList && window.Blob && (new XMLHttpRequest()).upload; }; ``` I copied "AjaxFileUpload.Utils.pre.js" locally and changed the 10 to a 9, but the Ajax version is still being used instead of my local version. I have unsuccessfully tried this in the header of my page code: ``` <script type="text/javascript"> Sys.loader.basePath = "/js/"; Sys.require([Sys.Extended.UI.AjaxFileUpload]); </script> <script type="text/javascript" src="/js/AjaxFileUpload.Control.pre.js"></script> <script type="text/javascript" src="/js/AjaxFileUpload.Utils.pre.js"></script> ``` And unsuccessfully tried this too: ``` <ajaxToolkit:ToolkitScriptManager ID="ScriptManager1" runat="server" EnablePageMethods="true" EnablePartialRendering="true" ScriptMode="Debug"> <Scripts> <asp:ScriptReference Path="~/js/AjaxFileUpload.Control.pre.js" /> <asp:ScriptReference Path="~/js/AjaxFileUpload.Utils.pre.js" /> </Scripts> </ajaxToolkit:ToolkitScriptManager> ``` Suggestions?
AjaxFileUpload: Drop file here is not working upload in EI10 for Win 8 ??
Comments: Yes, here is why. Any suggestions how to get our modified local javascript files to supersede the original Ajax javascript version of the same name? The "AjaxFileUpload.Utils.pre.js" file includes this statement: ``` this.checkHtml5BrowserSupport = function () { // IE10 Desktop (NOT Metro version) has FormData but it's buggy, // so we want exclude it from Html5 supported browser. var browser = Sys.Browser; if (browser.name == "Microsoft Internet Explorer" && browser.version <= 10) return false; return window.File && window.FileReader && window.FileList && window.Blob && (new XMLHttpRequest()).upload; }; ``` I copied "AjaxFileUpload.Utils.pre.js" locally and changed the 10 to a 9, but the Ajax version is still being used instead of my local version. I have unsuccessfully tried this in the header of my page code: ``` <script type="text/javascript"> Sys.loader.basePath = "/js/"; Sys.require([Sys.Extended.UI.AjaxFileUpload]); </script> <script type="text/javascript" src="/js/AjaxFileUpload.Control.pre.js"></script> <script type="text/javascript" src="/js/AjaxFileUpload.Utils.pre.js"></script> ``` And unsuccessfully tried this too: ``` <ajaxToolkit:ToolkitScriptManager ID="ScriptManager1" runat="server" EnablePageMethods="true" EnablePartialRendering="true" ScriptMode="Debug"> <Scripts> <asp:ScriptReference Path="~/js/AjaxFileUpload.Control.pre.js" /> <asp:ScriptReference Path="~/js/AjaxFileUpload.Utils.pre.js" /> </Scripts> </ajaxToolkit:ToolkitScriptManager> ``` Suggestions?