Completed
Last Updated: 11 Dec 2018 11:43 by ADMIN
We have created a KB article where a possible approach to achieve image resizing before the upload is suggested. You can find it at https://www.telerik.com/support/kb/aspnet-ajax/upload-(async)/details/resize-images-client-side-with-html5-before-uploading-with-radasyncupload

The article describes a straightforward way on how to change the uploaded image dimensions. You can further improve and modify the logic in the _uploadFile function to allow the user to define the new dimensions or use a tool to allow the users to modify the image.
Unplanned
Last Updated: 10 Jun 2021 18:10 by ADMIN
Unplanned
Last Updated: 12 Jul 2021 07:41 by ADMIN
ADMIN
Created by: Hristo Valyavicharski
Comments: 8
Category: AsyncUpload
Type: Feature Request
13
When upload larger files the connection may dropped during the file uploading. In result of this the selected file will not be uploaded successfully and the user will have to start the uploading from the beginning. This operation can be very annoyng when connection is slow. 

The suggested features aims to allow resuming, when the failed file is selected again. The uploading should continue automatically from there it stopped.

Unplanned
Last Updated: 25 Aug 2017 06:14 by Kushan Shah
Created by: Marla
Comments: 4
Category: AsyncUpload
Type: Feature Request
11
We would like to upload a folder's structure and content via asyncupload drag and drop functionality.  This functionality exists with Chrome and FireFox now.  Please add.  Thanks.
Unplanned
Last Updated: 16 Jun 2021 08:14 by ADMIN
I am using the RadAsyncUpload with UploadedFilesRendering="BelowFileInput".  This works fine, but I would like the list to appear in the order they are selected not the reverse order.  Is there away to accomplish this?  It should look like the UploadedFilesRendering="AboveFileInput" list but appearing below.

This should be a feature of the control which currently limited to above in the order they are select or below the reverse order.  In either case you should be able to select the order the files are displayed in the UI.
Unplanned
Last Updated: 22 May 2020 13:16 by ADMIN
ADMIN
Created by: Peter Milchev
Comments: 0
Category: AsyncUpload
Type: Feature Request
3
Currently the AsyncUpload saves the chunks in the Temporary folder using the original name of the file, the Process method of the Custom handler. When the Temporary folder name is very long, it can hit the Windows path length limitation of 260 symbols.
Completed
Last Updated: 28 Mar 2022 19:44 by ADMIN
Declined
Last Updated: 29 May 2020 14:52 by ADMIN
Created by: Jukka
Comments: 2
Category: AsyncUpload
Type: Feature Request
2
I would be nice to gain more control over radasyncupload's upload behavior when using database as storage for uploaded files.

Consider this use case. You have file management web-app that uses SQL database as storage for uploaded files. In SQL database you use Filestream enabled table to store the uploaded file data. You like to allow your app users to upload multiple big files > 100 Mt at once. And you have limited disc space on your web server hosting your app. So you don't want to buffer those uploaded files on your web server in any point of the upload process.

To be able to do so radasyncupload needs to be able to stream uploaded files to the SQL database as straight as possible. Chunk by chunk. 

radasyncupload already has feature that allows you to use your own generic handler to handle some of the upload process. It just needs expose some of those events that happens before process-event (maybe ProcessRequest?). So developer can start handling the HttpPostedFile's InputStream at the begining of the upload and stream it directly to the database. Like one can do with the regular upload controls like so:

Public Sub ProcessRequest(ByVal context As HttpContext) Implements IHttpHandler.ProcessRequest

	Dim hpf As HttpPostedFile
	
	For i = 0 To context.Request.Files.Count - 1
	
		hpf = context.Request.Files.Item(i)
		
		...
		Using Command As SqlCommand = New SqlCommand(String.Concat("INSERT INTO Dokuments(DokumData...) values (@DokumData...)"), connection)
		'Other params

		Command.Parameters.Add("@DokumData", SqlDbType.Binary, -1).Value = hpf.InputStream
		connection.Open()
		Command.ExecuteScalar()
		connection.Close()
		
	Next

End Sub
Completed
Last Updated: 29 Jun 2015 13:36 by ADMIN
ADMIN
Created by: Peter Filipov
Comments: 1
Category: AsyncUpload
Type: Feature Request
1
The user should be able to determine by which criteria the validation failed (size or extension).
Completed
Last Updated: 26 Jul 2016 12:04 by ADMIN
Created by: Jan Brandenburger
Comments: 1
Category: AsyncUpload
Type: Feature Request
1
Hi Telerik Team,
is it possible to implement the feature into the uploadmodule control , that you can open the uploaded files per Double-Click.
We want to use the control to create offers and we want to give the users the option to upload files - that works wonderful.
But the following editors of the offers don`t have the chance to open the "attached" files.

Thank you very much.
Best Regards,

Jan Brandenburger
Completed
Last Updated: 20 Mar 2014 17:13 by SamVanity
Unplanned
Last Updated: 25 Jul 2014 14:50 by ADMIN
Unplanned
Last Updated: 06 Aug 2014 14:22 by Brian
ADMIN
Created by: Hristo Valyavicharski
Comments: 1
Category: AsyncUpload
Type: Feature Request
1

			
Declined
Last Updated: 10 Mar 2015 13:50 by ADMIN
Created by: Eric Smith
Comments: 1
Category: AsyncUpload
Type: Feature Request
1
We use the RadAsyncUpload control in several places in our application. We would like to be able to style the upload button to match other buttons on the form. Our preference would be to apply a CSS style but if the only option is to apply an 'skin', that would be acceptable. 
Unplanned
Last Updated: 18 May 2015 14:23 by Andre Light
Declined
Last Updated: 14 Jun 2021 14:46 by ADMIN
There will be a validation that will stop dragged and dropped folders in the drop zone of RadAsyncUpload from being uploaded.
Declined
Last Updated: 11 Sep 2020 13:32 by ADMIN
Created by: Eli
Comments: 1
Category: AsyncUpload
Type: Feature Request
1
We would like the ability to perform drag and drop upload when using the Silverlight module.  We have found and have much support from forums and posts that the FileApi module does not work with environments with Windows Authentication and IE 11.  This is due to a know IE bug that is not going to be fixed.

http://www.telerik.com/forums/telerik-async-upload-fails-in-ie11-on-load-balancer
http://www.telerik.com/forums/radasyncupload-freezes
http://www.telerik.com/forums/ie11-freezes-when-is-used-async-upload


Although I can disable the FileApi, doing so prevents us from using the much loved drag and drop.
Unplanned
Last Updated: 27 May 2020 16:26 by ADMIN
Created by: Mohammed
Comments: 1
Category: AsyncUpload
Type: Feature Request
1

Hi guys,

I can see async.concurrent feature in kendo ui upload control, do we have this feature or can have it in ajax upload control ? 

 

https://docs.telerik.com/kendo-ui/api/javascript/ui/upload/configuration/async.concurrent

1 2