I am developing an Angular application with the Kendo Upload control and I require the ability to send custom messages to the control's file list. Here is my current code to add ModelState errors to the validationErrors array of the affected file.
…
Could you please help me how to change allowedExtensions valiation of kendo file upload control dynamically runtime using Jquery?
e.g. Suppose user select to upload the media file,
then allowedExtensions should be change to ".mp4".
…
I'm trying to upload a file using Kendo UI in angular. Everything is working fine except progress bar. It always showing zero while upload processing. I'm using Kedno UI upload in popup.
Here is my parent component parent.component.html
I have used kendo upload to upload files using Ajax Post in MVC core. I can call the API url but data is coming null. Have i passed data correctly? Here is my code.
I am using the Kendo Angular File Upload component within my Angular 7 app. The back end is ASP.NET core 2.1 hosting a MVC API via Kestrel. I can get uploads to work for small files. Larger files (120MB) fail with a 500 (Internal Server Error). …
I am using Kendo uploader to upload files into my application. I have made sure to allow only the extensions defined in my config to be allowed to upload or else to show up an error message. My code looks something like this
var validExtensions =…
I am using Kendo UI uploader. When I upload the files using kendoUpload, actually I rename the files using Guid.NewGuid() in server side. The problem is that, when I want to remove the files, the original file name is sent to remove handler in…
I have a kendo upload control like this:
@(Html.Kendo().Upload()
.Name("attachments")
.Async(a => a
.Save("UploadAsync", "Intel")
.Remove("RemoveAsync", "Intel")
.AutoUpload(true)
)
.Events(e => e
…