I am using kendo to upload files from the client everything is working as expected while loading , But here i have question related to url when we upload files i am using url in the config when file loads succesfully i have response from the server.…
I have a kendo upload and an external css file wherein the following css has been overwritten:
ul.k-upload-files .k-upload-action {
display: none;
}
the reason for the above is not to allow users from removing or cancelling the file during…
I tried to apply the method on this page, but this sample save the files to disk instead of Database. So, could you please inform me what changes should be made on the sample method or is there any sample using this Kendo Upload to save multiple…
I am using a Kendo File Upload control to upload multiple files. Only few of the files are getting uploaded (especially first and last) or some random ones. Is there any solution for this ?
Index.cshtml :
I want to Cancel the file uploading on click of cancel button.
means I want to trigger the onCancel(e) event on click of my cancel button
My code is,
@(Html.Kendo().Upload()
.Name("files")
.Multiple(false)
.Async(a => a
…
Having a few issues with Kendo Upload. When the file is less than the max size which is 15MB, then it's fine. However, if it is more than the max size, it doesn't go into the Upload action, but it still returns the message "Done".
…
I'm using Kendo UI MVC Upload control to upload multiple files at once (i.e batch). The documentation is quite clear on what to do, but I'm seeing separate upload requests for each file instead of single upload request for all.
Here's my code for…
I have used Kendo Upload functionality to upload the files. And used asynchronous upload.
$('#File').kendoUpload({
async: {
saveUrl: '@Url.Action("FileUpload", "Upload")',
autoUpload: false,
},
success: function (data) { …
How can I restrict Kendo upload to CSV files?
Razor:
@(Html.Kendo().Upload()
.Name("import-file")
.Multiple(false)
.ShowFileList(true)
.Async(a => a
.Save("Save", "Import")
.Remove("Remove",…
I'm Use kendo ui file Upload in mvc project.
delete a file not confirmation and i want a confirm before delete
@(Html.Kendo().Upload()
.Name("attachments")
.TemplateId("fileTemplate")
.Async(async =>…
We are upgrading our old Telerik Upload control to Kendo Upload.
One additional functionality provided in the new control is percentage completion number.
We have decided that the progress bar is a sufficient indicator for the status bar.
Hence we…
I am doing an upload via CORS to Amazon S3 with the Kendo Upload control. I'm having an issue with the fact that I need to grab a signature from my server, then add it to the 'data' for the event object of 'upload' handler I created. The problem…
I'm trying to use the KendoUI file upload widget. The upload is working and the server is returning a valid JSON object but I cannot access the response data.
The docs say I should check e.XMLHttpRequest but this property is always undefined. In…
I have a problem with Kendo upload. After uploading a file am getting "Done" and "Right tick mark" on select file right side. How can I remove that?
After save button click in my form upload control file is removing but "Done" and "Right tick mark"…