This question is locked. New answers and comments are not allowed.
Mike Cousins
Top achievements
Rank 1
Mike Cousins
asked on 03 Apr 2012, 06:41 AM
Internet Explorer 10 supports multiple file uploads and file drag and drop. The demo doesn't work in it though. Is support planned in a version that is coming soon?
5 Answers, 1 is accepted
0
Hello Mike,
We generally do not support browsers in beta stage, but as soon as IE10 becomes official (or at least there is a release candidate), we will make sure that everything works as expected.
If you feel like experimenting, you can modify the _getSupportsDrop() method in telerik.upload.js to allow IE10 to create a drop zone.
Kind regards,
Dimo
the Telerik team
We generally do not support browsers in beta stage, but as soon as IE10 becomes official (or at least there is a release candidate), we will make sure that everything works as expected.
If you feel like experimenting, you can modify the _getSupportsDrop() method in telerik.upload.js to allow IE10 to create a drop zone.
Kind regards,
Dimo
the Telerik team
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 Telerik Extensions for ASP.MET MVC, subscribe to their blog feed now.
0
Mike Cousins
Top achievements
Rank 1
answered on 04 Apr 2012, 02:19 AM
Here is the File API documentation: http://msdn.microsoft.com/library/ie/hh673542.aspx
We need to be able to end up with lines like this: <input type="file" name="pic" multiple accept="image/jpeg" /> The "multiple" keyword enables multi-select on IE10 and the accept can let you filter the file types. Hopefully you guys can implement this sooner than an RC or full release for IE10. The API will not be changing so you don't need to worry about that. I really want to get going on some projects with this.
0
Hi Mike,
The Upload component provides a Multiple() setting already, and you can set accept via HtmlAttributes().
Html.Telerik().Upload()
.HtmlAttributes(new { accept = "image/jpeg,image/gif"})
Regards,
Dimo
the Telerik team
The Upload component provides a Multiple() setting already, and you can set accept via HtmlAttributes().
Html.Telerik().Upload()
.HtmlAttributes(new { accept = "image/jpeg,image/gif"})
Regards,
Dimo
the Telerik team
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 Telerik Extensions for ASP.MET MVC, subscribe to their blog feed now.
0
Mike Cousins
Top achievements
Rank 1
answered on 04 Apr 2012, 05:29 PM
From looking at the code the "multiple" keyword seems missing in the demo though.
<input id="attachments" name="attachments" type="file" />
That's what it shows when multiple uploads are enabled.
<input id="attachments" name="attachments" type="file" />
That's what it shows when multiple uploads are enabled.
0
Hi Mike,
The multiple HTML attribute is applied with Javascript. If you inspect the <input> element in Firebug or the Web Developer Toolbar, you will see it.
Regards,
Dimo
the Telerik team
The multiple HTML attribute is applied with Javascript. If you inspect the <input> element in Firebug or the Web Developer Toolbar, you will see it.
Regards,
Dimo
the Telerik team
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 Telerik Extensions for ASP.MET MVC, subscribe to their blog feed now.
