If you destroy the Upload after uploading a file, a JS error occurs in the console.
An error is thrown after destroying the component
No errors should be thrown
Describe the bug
The upload button is not clickable on Mac in Safari
Workaround - http://dojo.telerik.com/egUMImEp/3
To reproduce
Steps to reproduce the behavior:
Expected behavior
The upload button should be clickable
Affected package (please remove the unneeded items)
Affected suites (please remove the unneeded items)
Affected browsers (please remove the unneeded items)
Build system information (please remove the unneeded items)
In an Upload configured with batch:true, if you select multiple files, the file icon is missing.
Regression introduced with 2023.2.606
Workaround - https://dojo.telerik.com/UpivAJUs/5
The file icon in the file list is missing
There should be a file icon in the file list
When the 'Select files' button and the 'Submit' button are rendered close to each other and the 'Submit' button is clicked the 'Select files' popup is opened. Thus, the selected file could not be submitted. The issue appears on IOS in Safari and Chrome.
The 'Select files' popup is opened.
In case there are selected files when the submit button is clicked, the files should be submitted. The 'Select files' popup should not be opened.
When a user clicks the Kendo UI Upload's "select files" button in Firefox, they will need to click twice.
The first click should trigger the menu to open for uploading files.
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.
Scenario 1
Scenario 2
Scenario 1
The Button appears but does nothing
Scenario 2
The widget attempts to Upload the invalid file and produces an error
Upload of invalid files shouldn't occur and no errors should be thrown;
A non-responding Upload button shouldn't appear.
The Upload popup is not opened if you click near the button's border
The select popup does not open
The select popup should open
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>
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!
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!
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
When we have a scenario with the Upload component configured with a chunk upload configuration, we cannot upload a file that contains an apostrophe in its name.
The selected for upload file is not being uploaded.
** If the above scenario is tested in an MVC project, the error returned from the server is "A potentially dangerous Request.Form value was detected from the client". Below you will find a test project:
ChunkUpload.zip
The files selected for upload should not have any issues with their uploading, no matter if there is an apostrophe in their name or not.
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
The 'Upload' and 'Cancel' buttons are not styled as focused
The 'Upload' and 'Cancel' buttons should be styled as focused
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
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!
Hello
on https://demos.telerik.com/kendo-ui/upload/async
In the area 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
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.
Dojo example.
The aria-label value is in English.
The aria-label value is localized.
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.
GetFiles returns an array with one item after removing the file from the list.
The method should return an empty array.