Questions tagged [kendo-upload]

Upload widget supporting also asynchronous uploads - part of Kendo UI.

Upload is a Kendo UI () component.


Related tags

127 questions
1
vote
1 answer

ASP.Net MVC kendo File Upload validations not working

I have a simple Kendo MVC File Upload control. I want to restrict the file size and file type. Please find my code below:
@(Html.Kendo().Upload() .Name("files123") .Async(a => a .Save("Save", "Upload") …
Sai Avinash
  • 4,683
  • 17
  • 58
  • 96
1
vote
1 answer

How to get response using Kendo file upload async method?

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.…
aftab
  • 693
  • 1
  • 12
  • 27
1
vote
1 answer

kendo upload overwrite ul.k-upload-files .k-upload-action style on select event

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…
Noel
  • 11
  • 1
1
vote
1 answer

How to save multiple files to database rather than disk

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…
Jack
  • 1
  • 21
  • 118
  • 236
1
vote
2 answers

Kendo UI multiple files upload issue

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 :
hakuna
  • 6,243
  • 10
  • 52
  • 77
1
vote
1 answer

Triggering OnCancel event of kendo upload on click of button

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 …
Shital Kadam
  • 238
  • 2
  • 5
  • 14
1
vote
1 answer

Returning correct error message in Kendo Upload if file too big

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". …
e-on
  • 1,547
  • 8
  • 32
  • 65
1
vote
2 answers

Kendo MVC Upload - Batch Upload

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…
Uchitha
  • 998
  • 8
  • 24
1
vote
1 answer

On successful upload hits the error event and on failure hits the success event in Kendo Upload

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) { …
Lak
  • 146
  • 2
  • 15
1
vote
1 answer

Only allow CSV Files in Kendo Upload

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",…
Marko
  • 1,291
  • 1
  • 21
  • 37
1
vote
2 answers

Kendo UI File Upload Delete Confirm

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 =>…
Amir
  • 123
  • 1
  • 2
  • 10
1
vote
1 answer

How do I remove the percentage complete label from a Kendo Upload control?

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…
KeenUser
  • 5,305
  • 14
  • 41
  • 62
1
vote
1 answer

Is there any way to manually initiate an AJAX upload with the Kendo Upload control

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…
Erich Oliphant
  • 148
  • 2
  • 6
1
vote
1 answer

KendoUI Upload control - Can't access server response in complete callback

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…
GooseZA
  • 1,015
  • 1
  • 10
  • 19
1
vote
3 answers

After uploading file through Kendo Upload Remove "Done" and "Right tick mark" on select file

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"…
Karthik
  • 207
  • 15
  • 38
1 2 3
8 9