Unplanned
Last Updated: 25 Mar 2024 13:35 by Ranjini
Created by: Ranjini
Comments: 0
Category: Upload
Type: Feature Request
1
Expose the ability to set the ChunkSize in gigabytes. For example through a string.
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 Jan 2022 23:42 by ADMIN
Created by: SturmA
Comments: 0
Category: Upload
Type: Feature Request
1

Hi Team,

I would like to request a built-in event which would fire when any validation fails within the Kendo UI Upload.  

Thank you!

Unplanned
Last Updated: 04 May 2021 19:22 by ADMIN
Created by: Ron
Comments: 0
Category: Upload
Type: Feature Request
1

Hi Team, 

I would like to request the functionality to remove the Drag and Drop upload configuration using the built-in API of the Kendo UI Upload. 

Thank you!

Unplanned
Last Updated: 18 Nov 2020 10:58 by ADMIN
Created by: Mike
Comments: 1
Category: Upload
Type: Feature Request
0

Hello,

It appears that the Upload control is not including the header: X-Requested-With when using it in Async mode. Omitting this header is a departure from the way the other controls behave in asnyc mode. It's inconsistent and leads developers to not be able to rely on features/behaviors of the supplied the controls.

Please consider adding this header as it will bring this control functionally in-line with the behavior of other controls running in async mode.


Thanks,

Mike

 

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

 

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: 28 Oct 2019 12:35 by ADMIN
Created by: salloum
Comments: 0
Category: Upload
Type: Feature Request
0

Implement functionality that enables the dynamic change of the chunk size when uploading a file.

This change should depend on file size and upload speed. 

Declined
Last Updated: 17 Jun 2021 10:55 by ADMIN

There should be a render function of some sort that can be called that changes how the Uploads are displayed.
In the attached image, I uploaded a single file, then two additional files.
Rather than having a set of one and a set of two, I'd prefer to have either a set of three, or three sets of 1. 

 

I understand that the plugin creates an input element for each individual uploading, however, I think there would be value in being able to join or split those files into multiple elements. It may even be beneficial to add and utilize a FileList object in the Kendo Upload object, as this would allow for the uploads to be sorted alphabetically, or by type, and so on. 

 

To recreate the behavior mentioned, simply upload any number of files to an Upload control and then do that one more time. The behavior can be recreated on the Telerik website demos.

Unplanned
Last Updated: 23 Nov 2018 09:03 by ADMIN
Created by: Sunil
Comments: 2
Category: Upload
Type: Feature Request
0

Hello,

I came across an issue in Kendo Upload UI for Vue. The tooltip is not getting changed on file drag. I could reproduce the same in the official kendo website.

Please find the screenshot below

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);
                        }
                    }
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
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/
Declined
Last Updated: 10 Feb 2020 12:57 by ADMIN
Created by: Mr. Rony
Comments: 1
Category: Upload
Type: Feature Request
1
Put a KENDO Upload for JQUERY sample folder because not exits into the zip of current comercial version and internal version than KENDO Upload MVC it exist.. The idea is explain how to implement a web api across kendo upload/ saveurl /save ???
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.
Completed
Last Updated: 03 Feb 2022 11:53 by ADMIN
Created by: Steve
Comments: 1
Category: Upload
Type: Feature Request
1
Filter just certain types of files by extension (.csv, .doc, .jpg, etc.).
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: 18 Feb 2022 05:55 by ADMIN
Created by: Mitchell
Comments: 1
Category: Upload
Type: Feature Request
2
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.
Unplanned
Last Updated: 18 Feb 2022 05:47 by ADMIN
Created by: Boris
Comments: 0
Category: Upload
Type: Feature Request
2
It would help a lot if we could prepopulate the kendoUpload field file list also in synchronous mode.
1 2 3