Completed
Last Updated: 15 May 2017 13:19 by ADMIN
Created by: Tomáลก
Comments: 23
Category: Upload
Type: Feature Request
140
I think, it would by great, to have option to chunk files into smaller pieces. It allows better uploading big files. When using PHP backend, there is max post size restriciton. I think, chunking method is faster etc.
Completed
Last Updated: 19 Sep 2016 05:42 by ADMIN
Created by: Robert
Comments: 9
Category: Upload
Type: Feature Request
48
There appear to be a number of options missing from this control that keep it from being really powerful. For example:
- there does not appear to be a method in which to access the files currently selected, in order to remove one. 
- If you want to limit the file types selected, you have to cancel the entire selection event, which will only piss off end users.
-The only way to show a "remove" button is to have something post back to the server, which makes no sense if AutoUpload is false.
- If you want to clear the list of uploaded items, you have to use jQuery to remove the LI's (WTF?)

My proposed changes:
- Have a Remove button regardless of whether there us a Remove URL set or not. If there is not a Remove URL set, disable the Remove/cancel button while files are being uploaded.
- Add a clear() method to remove all files, uploaded or otherwise.
- Add a getFiles() method to get a list of all in-memory files being managed.
- Add a remove(file) method, so that files that were accidentally selected can be removed in the Select event handler without having to choose between adding a server-side call and pissing off the end user.
- Add a setFileTypes() method that lets you pass in an array of file types to accept. All others will be automatically removed from the collection.
- Make the Drag&Drop capability set the drop zone visibility by default. You can manage that in jQuery without making me add more styles manually.

Thank you for your consideration.
Unplanned
Last Updated: 21 Jan 2020 17:14 by ADMIN
Created by: Madura
Comments: 5
Category: Upload
Type: Feature Request
23
I would like to have Kendo upload widget in a popup window to track the upload progress, while user navigate through different child pages in asp.net master page application. 
Larger file upload will take time and it will be very useful to have such a capability progress through the upload while user able to perform other things.
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.
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.
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.
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.
Unplanned
Last Updated: 24 Jun 2021 11:07 by ADMIN
Created by: Bryan Cho
Comments: 0
Category: Upload
Type: Feature Request
7
Hi Team, I suggest the feature which can be copy and paste image while upload images. 
For fashion industry, we handle many images of clothes and we need to upload image to legacy system. 
However, we don't upload images by drag drop of them. We add the arrows, shapes and some texts about the image on the Excel
As of now, we capture all of them and put the image editing tool and then save and upload. so, if there's new feature which can be paste from clipboard, it'll be save much time for many person. 

Example of free component that already do this: 
https://pqina.nl/filepond/#examples
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: 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.
Unplanned
Last Updated: 25 Apr 2022 12:24 by Carl
Created by: Carl
Comments: 0
Category: Upload
Type: Feature Request
4

Currently, the DropZone is always rendered around the Telerik UI Upload widget and there is no built-in option that can be used in order to not render the DropZone. 

In order to hide the DropZone, the following is required:

<style>
     #wrapper {
       display: inline-block;
     }

     .k-upload {
       border-width: 0;
     }

     .k-upload .k-dropzone {
       padding: 0;
     }

     .k-upload-status-total {
       display: none;
     }
   </style>
<script>
    $(document).ready(function() {
      //Removing the "Drop files here message"
      $("#files").closest(".k-upload").find(".k-dropzone em").remove();
    });
  </script>

However, if Boostrap is used, additional steps are needed - all the necessary classes should be returned accordingly:

<script>
  $("#files").ready(function(){
       $("#files").closest(".k-dropzone").removeClass("k-dropzone").addClass("form-control").addClass("col-md-3");
   });
</script>

 

 

 

Unplanned
Last Updated: 07 Sep 2020 06:07 by ADMIN
Created by: FranckSix
Comments: 0
Category: Upload
Type: Feature Request
4

With the upload contronl when I select many items at one time it create un bunch of files can be upload in same batch. But when I select many files in different selection the control create bunch for every selection. For validation purpose I need to get all files in a single upload, but I cant control how the user select his files.

 

Actual                                                                           Expected

 

Unplanned
Last Updated: 17 Jun 2021 11:16 by ADMIN
It would be very helpful if you could standardize the button configuration across all widgets to have the same styling and usage properties. Specifically, the KendoUploader button does not have the configuration options for spriteCssClass, icon, or imageUrl. It is possible to add a background icon via css, but in some cases a texture or other background icon may be used across the entire button, making it very difficult to apply a icon as a background to the button also.
Unplanned
Last Updated: 07 Feb 2020 21:02 by ADMIN
Created by: AbsolutelyN
Comments: 1
Category: Upload
Type: Feature Request
4
Telerik Upload is lacking image preview and scaling options. Please add support to show a thumbnail of images before uploading and also the ability to resize images on the client. This is really important when you have people wanting to upload photos and they select big files when you only need a small image. Images can be scaled server side but much faster upload and more convenient client side.

Examples of free components that already do this:
https://www.plupload.com/
https://nodeca.github.io/pica/demo/
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.
Unplanned
Last Updated: 30 Jun 2021 07:37 by ADMIN
Would you consider adding a property for "FileSource" to the Files option of the upload widget?  Then i could set the base 64 string (since the images are stored in the database).  This would make it so much easier to display an image preview for these files.  Right now I have to do a hack because this is not supported (see ticketID: 1348670).  Please consider adding this property for the next version - thank you!

Here is what the code would look like with the new property available: 

                    .Files(files =>
                    {
                        foreach (var file in Model.Attachments)
                        {
                            files.Add().Name(file.FileName).Extension(file.Extension).Size(file.Size).FileSource(file.Base64Src);
                        }
                    }
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.
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.
Duplicated
Last Updated: 30 Jun 2020 08:58 by ADMIN
Created by: Andre Beauchamp
Comments: 1
Category: Upload
Type: Feature Request
2

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!

Unplanned
Last Updated: 06 May 2019 13:05 by ADMIN
Created by: Tayger
Comments: 5
Category: Upload
Type: Feature Request
2
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.
1 2 3