I created a page with a loader. I use Uploadify 3 as the bootloader. The code works in all browsers except IE9. When I turn on IE 9 in compatibility mode, it works. In IE9, I cannot click the download button. It shows, but there is no response to a click. Thus, the file selection dialog does not open. In Opera, chrome and FF, the button works, and when I click, the file open dialog opens.
Flash works in IE9. (version 11,0,1,152) (youtube works)
When I press the button correctly, I do not receive flash information. When I do this in all other browsers, I get flash information. When I click on youtube (in ie9), I also get flash information ....?
This is my downloadable jquery code:
$(document).ready(function() { $('#fileInput').uploadify({ 'swf': '/Content/Scripts/uploadify3/uploadify.swf', 'uploader': '/nl-nl/Attachment/Upload', 'cancelImage': '/Content/Scripts/uploadify3/uploadify-cancel.png', 'checkExisting': '/nl-nl/Attachment/Check', 'multi': true, 'buttonText': 'Upload', 'postData' :{'RelationId' : '@cookie'}, 'sizeLimit': 2147483647, 'auto': true, onError: function(a, b, c, d) { if (d.status == 404) alert("Could not find upload script. Use a path relative to: " + "<?= getcwd() ?>"); else if (d.type === "HTTP") alert("error " + d.type + ": " + d.status); else if (d.type === "File Size") alert(c.name + " " + d.type + " Limit: " + Math.round(d.sizeLimit / 1024) + "KB"); else alert("error " + d.type + ": " + d.text); }, onUploadComplete: function() { $("#Grid").data('tGrid').ajaxRequest(); } }); });
I made a mistake? Is this a flash bug? Or something else?