This is a migrated thread and some comments may be shown as answers.

Rad Asycn Upload not working on IE 9 or Lower

3 Answers 36 Views
AsyncUpload
This is a migrated thread and some comments may be shown as answers.
Bas
Top achievements
Rank 1
Bas asked on 19 Feb 2014, 10:14 AM
Hello Forum,

We have been using Rad Asycn Upload to upload the files to the server. The control is working with Chrome and FireFox and IE10. But as we switch to IE9 or Lower versions of Internet Explorer, the control no longer works. Please find the web site project created in reference to the problem that we are facing at our end. Also the screen snaps have been attached with the problem when the file is uploaded to the server on IE9 or IE8. Can anyone please help or guide me through the issue?


Thanks
Bas

3 Answers, 1 is accepted

Sort by
0
Hristo Valyavicharski
Telerik team
answered on 24 Feb 2014, 11:11 AM
Hi Bas,

Please paste your code here, so we can review it. Or try to set DisablePlugins property to true.

Regards,
Hristo Valyavicharski
Telerik
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the UI for ASP.NET AJAX, subscribe to the blog feed now.
0
Bas
Top achievements
Rank 1
answered on 06 Apr 2014, 12:21 PM
Hello Hristo,

 Thanks for your reply.After certain observation at my end we figured out that, 
"deleteFileInputAt" doesn't work in IE9 or below. But it works fine in IE10 , FF and Chrome. This seems like a known issue with the Telerik Rad Async upload control. But any ways thank you so much for your concern. 


Thanks
Admin
0
Shinu
Top achievements
Rank 2
answered on 07 Apr 2014, 03:49 AM
Hi Bas,

Please have a look into the sample code snippet which works fine in IE9 and lower version also.

ASPX:
<telerik:RadAsyncUpload ID="RadAsyncUpload1" runat="server" OnClientFileUploaded="OnClientFileUploaded1">
</telerik:RadAsyncUpload>

JavaScript:
<script type="text/javascript">
    function OnClientFileUploaded1(sender, args) {
            sender.deleteFileInputAt(0);
    }
</script>

Thanks,
Shinu.
Tags
AsyncUpload
Asked by
Bas
Top achievements
Rank 1
Answers by
Hristo Valyavicharski
Telerik team
Bas
Top achievements
Rank 1
Shinu
Top achievements
Rank 2
Share this question
or