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

RadAsync Multifile Upload not supported in Safari

3 Answers 59 Views
AsyncUpload
This is a migrated thread and some comments may be shown as answers.
Shilpa
Top achievements
Rank 1
Shilpa asked on 14 Jan 2014, 06:08 PM
Hi,

I am using Safari (5.1.7) version and multifile selection is not working in Safari. It works fine in other browsers (IE, Chrome, Firefox).
The documentation says multifile is supported in Safari as well. Can the team confirm this?

Thanks,
Shilpa

3 Answers, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 15 Jan 2014, 09:26 AM
Hi Shilpa,

Under Safari RadAsyncUpload control is using FileAPI module to update files. Safari browser does not implement the interface correctly and that causes issues with multiple selection. Please try the following code snippet which works fine at my end.

ASPX:
<telerik:RadAsyncUpload ID="RadAsyncUpload1" runat="server" MultipleFileSelection="Automatic">
</telerik:RadAsyncUpload>

JavaScript:
<script type="text/javascript">
    Telerik.Web.UI.RadAsyncUpload.Modules.FileApi.isAvailable = function () { return false; }//disabling FileApi Module
    Telerik.Web.UI.RadAsyncUpload.Modules.Silverlight.isAvailable = function () { return false; } // disabling Silverlight Module
</script>

Hope this will helps you.
Thanks,
Shinu.
0
Shilpa
Top achievements
Rank 1
answered on 15 Jan 2014, 01:46 PM
 Hi Shinu,

I tried out the above code snippet but it doesn't work. Infact I don't see any Radasync upload control in my browser when I use below script:

Telerik.Web.UI.RadAsyncUpload.Modules.Silverlight.isAvailable = function () { return false; }


Thanks,
Shilpa
0
Hristo Valyavicharski
Telerik team
answered on 20 Jan 2014, 12:39 PM
Hi Shilpa,

Look at this forum post, where the same issue is discussed.

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 RadControls for ASP.NET AJAX, subscribe to the blog feed now.
Tags
AsyncUpload
Asked by
Shilpa
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Shilpa
Top achievements
Rank 1
Hristo Valyavicharski
Telerik team
Share this question
or