Hello Telerik,
I am using the Kendo Upload Control with Async AutoUpload set to "true". In version 2023.3.1114, when using "Select File" to upload a document the control works perfectly. Dragging and dropping a file onto the control also works perfectly.
After upgrading to 2024.1.130 using "Select File" to upload a document does not work, but dragging and dropping a file does work to upload a document.
Can you please advise me as to what I am doing wrong. I am using jQuery v3.7.0.
My client side code looks like the following:@(Html.Kendo().Upload()
.Name("uplCtrl")
.HtmlAttributes(new { aria_label = "files", title = "Select file to upload" })
.Multiple(false)
.Messages(m => m.Select("Select file...")
.DropFilesHere("Drop file here to upload"))
.ShowFileList(false)
.Async(a => a
.Save("UploadSave", "Vendors")
.AutoUpload(true)
)
.Validation(validation =>
{
validation.AllowedExtensions(new string[] { "pdf", "docx", "xlsx", "zip" });
validation.MaxFileSize(52428800);
})
.Events(e => e
.Error("onUploadError")
.Complete("onUploadSuccess")
.Upload("onUpload")
)
)