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".
@(Html.Kendo().Upload()
.Name("files")
.ShowFileList(false)
.Async(a => a.Save("Upload", "Document", new {@id = Model.ChangeRequestId})
.AutoUpload(true))
.Events(e => e
.Complete("refreshFileList"))
)
If it went into the action, then I'd be able to check for file size and return an appropriate message. Has anyone managed to successfully handle what happens with Kendo Upload if the file is too big?
Thanks