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.
It would be nice to have xhr in upload's remove event handler since sometimes we need to modify/add http headers on request.
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.
When we upload files with the Kendo Upload, it would be nice to upload them sequentially, in separate requests
I would like to be able to use a progress bar while uploadiing files synchronous using the MVC Upload control
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.
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.
Scenario: Imagine you implemented upload widget within grid and it can upload multiple files. After you upload, you realize you need to delete one of the uploaded file. Currently you cannot choose to delete either of the uploaded multiple files in edit mode. It would be nice to display preuploaded files in upload widget when the grid is in edit mode, so that user can delete the files that are not necessary anymore.
It would help a lot if we could prepopulate the kendoUpload field file list also in synchronous mode.
If we have a upload control with simple validation on allowed extensions and upload 50 files, the "k-upload-status" element prematurely gets set to "Done" once it finds a file type that is not allowed. If a user is not paying attention they could think that the upload is complete. It seems silly to mark an entire queue of files as "Done" after the first failure while uploading multiple items and while items are still uploading. While the upload may technically be "done" it really failed and should say "Partially done" or some other message than "Done". Also, placing an exclamation icon next to done is not very clear when an file does legitimately fail. The icon needs to be more prevalent and have a tooltip to describe it further. Most of my users in production have not noticed the icon and have thought that the upload completed. This is especially a problem if a user is uploading thousands of files and does not scroll down during/after upload.
When uploading a file the option "allowedExtensions" cares about the case sensitivity and blocks f.e. a file called "image.PNG" when allowedExtension is set to "png" (lower cased). Expected: Case sensitivity will be ignored or could be activated/deactivated by another option.
The complete event is triggered after each file upload if chunkSize is set.
The complete event is triggered for each file after the uploading is done.
The complete event should trigger only once when the upload process for all files is completed.
Workaround in this Dojo example
Hi!
We would like to be able to copy an image from the clipboard for the kendo file upload.
An example of the feature is depicted by this service : https://pasteboard.co/
I see this as a way to setup the paste event to be captured by the component.
This feature could be used in the jQuery or angular version alike.
Thanks!
Please resolve this, as this is a pain point for our customers.
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.
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" })
I would like to be able to be able to use unique filenames when uploading files asynchronous or maybe filnames based on GUID names
I suggest you to enable Image Insertion to the Suggestion description!
There seem to be only 3 MVVM bindings supported for the upload tool right now: enabled, visible, and events. If you are using Kendo templates to host this tool, this is kind of a deal breaker if you need to bind any data to the upload tool, e.g. files. Please add files at a minimum.