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
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>

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" })
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]
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.
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!

Completed
Last Updated: 15 Jun 2023 08:50 by ADMIN

Bug report

When a user clicks the Kendo UI Upload's "select files" button in Firefox, they will need to click twice.

Reproduction of the problem

  1. Please visit this Kendo UI Upload Live Demo with FireFox,.
  2. Click the select button, and click again.

Expected/desired behavior

The first click should trigger the menu to open for uploading files.

Environment

  • Kendo UI version: 2022.3.1109
  • jQuery version: All Supported Versions
  • Browser: Firefox 108.0
Completed
Last Updated: 24 May 2016 10:07 by ADMIN
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

Declined
Last Updated: 16 Jan 2019 17:40 by ADMIN

If I read https://docs.telerik.com/kendo-ui/AngularJS/introduction I find “Setting Handlers through k-on Attribute” which suggests that I should be able to write `k-on-` prior to any of the events documented at https://docs.telerik.com/kendo-ui/api/javascript/ui/upload#events and automatically run under `$apply()` or `$applyAsync()`. However, when I try that, my event handler doesn’t even run at all.

I think this is an oversight.

I can reproduce this in https://dojo.telerik.com/ocESevUS which is generated from the link at https://demos.telerik.com/kendo-ui/upload/angular which uses AngularJS v1.7.2 and Kendo UI v2018.3.1017.


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: 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. 

Completed
Last Updated: 30 Oct 2020 13:11 by ADMIN
Release 2020.R3.SP.next

Bug report

There are no configuration options dedicated to localizing the text in the arial-label attribute of these buttons. We localize other buttons, such as the "remove" and "cancel" buttons.

Reproduction of the problem

Dojo example.

  1. Select a bigger file, which will allow the "pause" and "resume" buttons to appear.

Current behavior

The aria-label value is in English.

Expected/desired behavior

The aria-label value is localized.

Environment

  • Kendo UI version: 2020.2.513
  • jQuery version: x.y
  • Browser: [all ]
Completed
Last Updated: 31 Jan 2022 10:21 by ADMIN
Created by: Guenter
Comments: 1
Category: Upload
Type: Bug Report
0

Hello

 

on https://demos.telerik.com/kendo-ui/upload/async

 

In the area also available for

Also available for:

 

 

the .net core link is broken

https://demos.telerik.com/aspnet-core/upload/async

 

If you go there directly the link is

https://demos.telerik.com/aspnet-core/upload/asyncupload

 

Completed
Last Updated: 16 Oct 2020 07:04 by ADMIN
Release 2020.R3.SP.next

Bug report

In some of the SASS themes when a file is uploaded, 'Cancel' and 'Upload' buttons are not marked as focused when navigating through Tab key

Reproduction of the problem

  1. Open the Upload Overview Demo
  2. Select one of the following themes - Fiori, Flat, Metro, Metro Black, Nova, Office 365
  3. Upload a file
  4. Navigate by using the Tab key

Current behavior

The 'Upload' and 'Cancel' buttons are not styled as focused

Expected/desired behavior

The 'Upload' and 'Cancel' buttons should be styled as focused

Environment

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

 

Completed
Last Updated: 29 Jan 2024 10:10 by ADMIN

Bug report

The Upload popup is not opened if you click near the button's border

Reproduction of the problem

  1. Open this Dojo example - https://dojo.telerik.com/uSedeSUq/7
  2. Click the button as close to the border as possible

Current behavior

The select popup does not open

Expected/desired behavior

The select popup should open

Environment

  • Kendo UI version: 2022.2.802
  • Browser: [all]
Unplanned
Last Updated: 18 Oct 2022 08:35 by Thomas

Bug report

Scenario 1: When you first select an invalid file and then a valid one, the upload button appears but does nothing.

Scenario 2: When you select a valid file and then an invalid one, if you hit the upload button, the widget will try to upload the invalid one and produce a server error.

Reproduction of the problem

Scenario 1

  1. Open this demo - https://demos.telerik.com/kendo-ui/upload/index
  2. Select a .PNG or another invalid file.
  3. Select a PDF ( or another valid file)

Scenario 2

  1. Open this Demo - https://demos.telerik.com/kendo-ui/upload/index
  2. Select a PDF ( or another valid file)
  3. Select a PNG ( or another invalid file)
  4. Press Upload button

Current behavior

Scenario 1
The Button appears but does nothing

Scenario 2
The widget attempts to Upload the invalid file and produces an error

Expected/desired behavior

Upload of invalid files shouldn't occur and no errors should be thrown;
A non-responding Upload button shouldn't appear.

Environment

  • Kendo UI version: 2022.3.913
  • Browser: [all]