Questions tagged [kendo-upload]

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

Upload is a Kendo UI () component.


Related tags

127 questions
2
votes
1 answer

Kendo upload does not post object with complex type property

I am using kendo upload control in Asp.net MVC application. On click event of a OK button i want to upload a file along with some metadata ( Note this OK button is not Upload control's OK button, its some other button on UI) So i have set…
LP13
  • 30,567
  • 53
  • 217
  • 400
2
votes
2 answers

Kendo UI upload component for angular 2 - Cannot upload

I am kendo ui for angular 2 and web api(.net core). I cannot upload files to web api using kendo upload. Here is my sample code: Html:
2
votes
1 answer

Delete files by id in kendo upload

I have setup kendo upload as below. @(Html.Kendo().Upload().Name("files") .Async(a => a .Save("UploadAttachments", "Mycontroller") .Remove("RemoveAttachments", "Mycontroller") .SaveField("files") .RemoveField("ids") …
agileD
  • 23
  • 1
  • 3
2
votes
1 answer

Kendo Upload - CSRF Token with ASP.NET

From what I saw, Kendo upload sends the CSRF token in the POST request body. What am I trying to do is to validate this token when making the request to a Web API method, but can't seem to figure it out. Does anyone have any ideas? Is there…
Marius Popa
  • 564
  • 1
  • 5
  • 22
2
votes
1 answer

Kendo UI async upload post always null

I need to upload a file from my html page async with kendo ui upload. Almost all of this code has been taken from here http://demos.telerik.com/kendo-ui/upload/async HTML
2
votes
4 answers

Hiding Upload button of kendo upload

I want to hide the 'Upload file' button of kendo upload since I am using my custom button for uploading file. I have written the code on select file of kendo upload as, function onSelect() { $('.k-upload-selected').css("display", "none"); } I…
Shital Kadam
  • 238
  • 2
  • 5
  • 14
2
votes
1 answer

Kendo UI Upload rename file on server and update client

I am using Kendo UI Upload widget and I rename the uploaded file on the server. I return the new name of the file and I modify the file name in the success event but that doesn't fully update the file name. What I mean is that for example the links…
Vesselin Obreshkov
  • 1,087
  • 11
  • 26
2
votes
0 answers

Multiple kendo file upload controls with additional data

I have a view with two kendo file upload control,(i cant make it one control with multiple true, because they serve different purpose), and i have a form with two textboxes and one dropdown, i have a save button, on click i need to read the input…
G--
  • 497
  • 1
  • 8
  • 25
2
votes
0 answers

How do i remove files from a zip file uploaded through kendoUpload? Using jszip

After the user uploads a zipped file, i want to remove the images folder from it before sending it over the network. I am using kendo for uploading, and the existing functionality works fine. I just want to add on the removing images part. This is…
insanity
  • 347
  • 3
  • 14
2
votes
2 answers

multiple partial views with same kendo mvc upload control

I had a partial view which is having a Kendo MVC upload control. And now i need to use this partial view multiple times in a single .cshtml page. Am facing problem with Control's ID and DOM conflicts... Like first Kendo upload is coming properly but…
Pavan N
  • 255
  • 2
  • 6
  • 21
2
votes
0 answers

get file path of selected files in kendo UI upload

how to get the file path of selected files in kendo UI upload element. we can get the name and size of files but is there any way to get the full path of file?
user3373819
  • 89
  • 2
  • 10
2
votes
2 answers

system.io.file.exists not working in mvc4

I am removing the image from kendo upload control. This is my code public ActionResult Remove(string[] fileNames) { if (fileNames != null) { foreach (var fullName in fileNames) { var…
Karthik
  • 207
  • 15
  • 38
2
votes
2 answers

Kendo UI Uploader inside Kendo List View

Is it possible to add kendo uploader inside kendo ListView?