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.
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.
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: 25 Apr 2022 12:24 by Carl
Created by: Carl
Comments: 0
Category: Upload
Type: Feature Request
5

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 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/
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 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: 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: 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.
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.
Unplanned
Last Updated: 07 Feb 2020 12:49 by Dave

Bug report

The complete event is triggered after each file upload if chunkSize is set.

Reproduction of the problem

  1. Open this Dojo example.
  2. Select at least two files to be uploaded.

Current behavior

The complete event is triggered for each file after the uploading is done.

Expected/desired behavior

The complete event should trigger only once when the upload process for all files is completed.

Workaround in this Dojo example

Environment

  • Kendo UI version: 2020.1.114
  • Browser: [all]
Unplanned
Last Updated: 08 Nov 2021 09:13 by ADMIN
Created by: Tim
Comments: 0
Category: Upload
Type: Feature Request
1
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.
Unplanned
Last Updated: 28 Oct 2021 11:21 by ADMIN
because .k-file.k-file-success <li> removal is deffered and so is still present on success event.
Unplanned
Last Updated: 26 Jul 2021 06:01 by ADMIN
Created by: Tayger
Comments: 0
Category: Upload
Type: Feature Request
1
KendoUI Upload Widget: 
- It would be great if it would be possible to defined a maxfileSize for specific file types and not only 1 maxFileSize for all file types. F.e.:
.jpg -> 500KB
.png -> 700KB
...

- In the SELECT event it should be possible to remove files from the file list (f.e. after doing programmatic validation to find files that should not uploaded: files.remove(id); So they are not displayed in progess/status window and will not be uploaded at all.
Unplanned
Last Updated: 05 Jun 2019 09:30 by ADMIN

Reproduction of the Problem:

Dojo: http://dojo.telerik.com/@grabbi/ayiQOGoT

  • Select multiple files in Upload-Widget with not allowed extensions or filesize greater then allowed
  • Remove one File from the list (not the last one)
  • Then the upload of the next file starts

This behaivior only occures when Chunk Upload is selected and some kind of validation is activated too.

Expected behaivior:

When Removing a file the file is just removed from the list and no upload ist starting.

Code:

 

<input name="file" id="file" type="file" />

<script>

    $(document).ready(function () {

        $("#file").kendoUpload({
            async: {
                withCredentials: false,
                saveUrl: "save",
                chunkSize: 2000000,
                saveField: "files",
                autoUpload: false
            },
            validation: {
                maxFileSize: 500
            }
        });
    });

</script>

Unplanned
Last Updated: 15 Apr 2020 15:17 by Dan

Bug report

The getFiles method does not return correct results when used in the success event. If you upload a file, the method in the success event will return an array with one item. If you remove a file, the same would return again an array with one item.

Reproduction of the problem

  1. Open this Dojo example.
  2. Upload a file and open the console.
  3. Remove the file.

Current behavior

GetFiles returns an array with one item after removing the file from the list.

Expected/desired behavior

The method should return an empty array.

Environment

  • Kendo UI version: 2020.1.406
  • Browser: [all]
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: 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: 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: 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

1 2