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
2 answers

How do i add fontawesome icon to Kendo UI upload button

I want to add font awesome icon to Kendo UI Upload Button HTML Code :
sirushti
  • 47
  • 1
  • 11
1
vote
1 answer

Kendo-Angular: Disable select file button in kendo-upload

I have implemented kendo upload in my angular project component.html
1
vote
0 answers

How do I add a Custom Error to Kendo Upload?

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. …
J Mackin
  • 11
  • 1
1
vote
0 answers

Display the date of uploading file with kendo UI and angular

I am using kendo UI to upload files and I want to display the name, the size and the date of uploaded files. This is my component.html :
hiba nebli
  • 107
  • 2
  • 18
1
vote
0 answers

Change validation of kendo upload control dynamically

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". …
Vish
  • 91
  • 1
  • 9
1
vote
1 answer

Why are there two similar action buttons in Kendo UI Upload template?

From the Kendo UI API reference: "To render an action button for each file, add the following markup to the template:
1
vote
0 answers

Kendo UI in Angular progress bar progressing not working in popup

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
dhamo dharan
  • 712
  • 1
  • 10
  • 25
1
vote
2 answers

Kendo upload using Ajax Post to upload files in MVC core

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.
Sunil Joshi
  • 63
  • 2
  • 9
1
vote
1 answer

Kendo Upload - CSRF Token with kendo ui jquery

how to add CSRF Token in kendoUpload $("#image").kendoUpload({ async: { saveUrl: "http://url", } });
1
vote
1 answer

Kendo UI Angular file upload component fails with large files

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). …
Myles J
  • 2,839
  • 3
  • 25
  • 41
1
vote
1 answer

How to restrict files with multiple extension to be uploaded

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 =…
Suraj Nair
  • 561
  • 1
  • 8
  • 27
1
vote
0 answers

How to achieve directory upload in kendo ui angular2?

I used this link, but I couldn't find the document or sample for directory upload in angular2. Can you please suggest on how to achieve it?
Mopo
  • 47
  • 3
1
vote
1 answer

How to Remove Physical Files in kendoUpload

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…
Mohsen Jafari
  • 61
  • 1
  • 5
1
vote
2 answers

Kendo Upload control remove event has no response

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

knockoutjs: send MultipartFile and other data with ajax call

i have this simple form:
1 2
3
8 9