Completed
Last Updated: 27 Sep 2021 14:56 by ADMIN
Created by: Dina
Comments: 1
Category: Upload
Type: Feature Request
4
Upload for MVC lucks upload in chunks feature as upload for ajax. So it is impossible to upload large files (like more than technical limit for asp.net in 4Gb). In my current project with 360 degrees videos where files might be 10+ Gb it is vital.
Completed
Last Updated: 19 Sep 2016 08:22 by ADMIN
Created by: Imported User
Comments: 2
Category: Upload
Type: Feature Request
2
can refer http://tus.io/demo.html for resumable file upload.
and http://www.dropzonejs.com/ for drop zone.
its beautiful and important plugin. hope fully kendo can intergrated.
Completed
Last Updated: 20 Sep 2021 12:33 by ADMIN
Created by: David Berman
Comments: 1
Category: Upload
Type: Feature Request
2
The upload control takes up a lot of space on the web page when you upload a lot of files.  As each file completes, I want an easy way to remove those files.  Ideally, a configuration option to automatically remove completed files otherwise a function to remove the file from the list from within the Success event.
Declined
Last Updated: 03 Dec 2021 08:57 by ADMIN
Created by: Timothy
Comments: 3
Category: Upload
Type: Feature Request
3
The Upload widget would be vastly more useful if it could upload with the  PUT as this would enable direct to S3 or GCS PUTs.
Declined
Last Updated: 26 Jul 2021 05:01 by ADMIN
Created by: Imported User
Comments: 2
Category: Upload
Type: Feature Request
2
I would like to be able to use a progress bar while uploadiing files synchronous using the MVC Upload control
Declined
Last Updated: 26 Jul 2021 04:53 by ADMIN
Created by: Imported User
Comments: 3
Category: Upload
Type: Feature Request
1
I would like to be able to be able to use unique filenames when uploading files asynchronous or maybe filnames based on GUID names
Completed
Last Updated: 03 Feb 2022 10:52 by ADMIN
Created by: Imported User
Comments: 3
Category: Upload
Type: Feature Request
2
When we upload files with the Kendo Upload, it would be nice to upload them sequentially, in separate requests
Completed
Last Updated: 20 Sep 2021 12:20 by ADMIN
Created by: Sarath
Comments: 3
Category: Upload
Type: Feature Request
9
Provide the image preview option for kendo upload.
Declined
Last Updated: 21 Sep 2021 11:26 by ADMIN
when we want to storage files directly to Azure storage we need first to upload the files to the server and then upload from the server to the azure storage...
why there isn't an option like RadCloudUpload that support cloud storage providers ?
Declined
Last Updated: 03 Dec 2021 07:50 by ADMIN
Created by: Imported User
Comments: 0
Category: Upload
Type: Feature Request
2
currently i can retrieve lastmodifieddate by using onUpload() event, but i cannot retrieve creation date. i hope kendo can update the kendo upload that can provide creationdate.
Declined
Last Updated: 11 Nov 2021 12:09 by ADMIN
Incorporate some mechanism which will allow us to handle situations where a file is uploaded, yet the target folder already has a file with the same name.  i.e. An event that is fired we can trap which will allow us to rename the file, then save it.
Completed
Last Updated: 22 Jan 2020 08:46 by ADMIN
Created by: faris
Comments: 5
Category: Upload
Type: Feature Request
10
i really needed Upload By Folder like goolge drive uploader. i hope kendo will add that feature.
Unplanned
Last Updated: 29 Jun 2021 09:05 by ADMIN
Created by: rudy
Comments: 3
Category: Upload
Type: Feature Request
11
I see in the forums you do not support what i need - but we really need it and will have to use a different control without it.  We need the ability to have the upload control, look, feel and act like it does in "Async Mode".  But when in this mode we need it to only upload 1 or two individual files at a time.  The issue is not bandwidth it is processing power.  So the "batch" trick doesn't work - we don't need all the files at once.  We need one file at-a-time, with the easy of letting the user pick a bunch and see them all listed out.  Something like

Async{  throttleLimit: 2}  - Where throttle limit simply keeps the number of pending uploads to 2 and waits until they succceed/fail to start uploading the next and so on.
Declined
Last Updated: 21 Sep 2021 11:23 by ADMIN
Created by: Tony
Comments: 1
Category: Upload
Type: Feature Request
5
In order to be able to manage files attached to server objects, it would be nice if we could bind the Upload widget to a datasource. 
The read() method of the datasource could be used to load the widget with the list of files attached to a given server object. 
The create() method would be used to upload new files to the sever.
The destroy() method would be used for deleting existing files on the server.

This would make the upload widget more consistent with other widgets like the combo boxes or the dropdown lists.
Completed
Last Updated: 19 Sep 2016 11:04 by ADMIN
Created by: Aaron
Comments: 1
Category: Upload
Type: Feature Request
1
The suggested way to omit the Remove button is to not provide a Remove URL/Action.  However this breaks the list of the async upload such that the list doesn't get cleared with each new upload.  Since its an async upload that automatically uploads, there no point in accumulating a list of uploads.  Whether or not you expose a remove button shouldn't be tied in any way to the clearing of the list when a new upload is made.  That should only affect the availability of a remove button. At the very least you could provide some documentation on this quirky behavior.  Instead its random walk of, ok if I change this property what happens, how about this one, how about both, and whirl away a few hours screwing around with unpredictable behaviors.


    @(Html.Kendo().Upload()
                .Name("pdfFiles")
                .Multiple(false)
                .Async(configuration=> configuration
                    .AutoUpload(true)
                    .Save("UploadTemporaryPdf", "StatementOfCredit")
                    //.Remove("RemoveTemporaryPdf", "StatementOfCredit")
                )
                .Events(events=> events
                    .Select("onUploadSelect")
                    .Success("onUploadSuccess")                    
                    .Error("onUploadError")
                 )
                .HtmlAttributes(new { accept = "application/pdf" })
Declined
Last Updated: 25 Oct 2021 06:47 by ADMIN
Created by: Joshua
Comments: 1
Category: Upload
Type: Feature Request
1
The current upload control does not allow the PUT verb. This means you cannot use it with Amazon S3 without implementing a proxy server. The problem with the proxy server approach is that it places unneeded strain on your own servers and you get charged twice for data transfer, once on the way in to the proxy server and again from the proxy server to S3.
Completed
Last Updated: 02 Sep 2021 05:28 by ADMIN
Created by: Imported User
Comments: 3
Category: Upload
Type: Feature Request
11
Add support to the Upload widget to upload files to an OData service, for instance to add attachments to SharePoint list items using SharePoints OData service. 

At the same time it would be good to be able to specify the urls for the Upload widget in an upload-datasource in a view model to which the Upload widget is databound, basically separate the uploading from the widget. That way you can choose to use an OData upload-datasource or a multipart/form-data upload-datasource. Obviously this OData upload-datasource may only be supported in browsers that support the HTML5 file api.
Completed
Last Updated: 25 Oct 2021 06:28 by ADMIN
Created by: Sawyer
Comments: 1
Category: Upload
Type: Feature Request
2
It would be nice to have xhr in upload's remove event handler since sometimes we need to modify/add http headers on request.
Declined
Last Updated: 18 Oct 2021 13:13 by ADMIN
Created by: Chris
Comments: 1
Category: Upload
Type: Feature Request
2
It woudl be great if we coudl access an images dimensions on upload, to avoid having to do server trips to determine if an image is valid.
Completed
Last Updated: 24 May 2016 10:07 by ADMIN