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.
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.
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
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>
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/
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.
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
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); } }
It would help a lot if we could prepopulate the kendoUpload field file list also in synchronous mode.
The complete event is triggered after each file upload if chunkSize is set.
The complete event is triggered for each file after the uploading is done.
The complete event should trigger only once when the upload process for all files is completed.
Workaround in this Dojo example
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.
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!
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.
because .k-file.k-file-success <li> removal is deffered and so is still present on success event.
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.
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!
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.
Reproduction of the Problem:
Dojo: http://dojo.telerik.com/@grabbi/ayiQOGoT
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 () {</script>