Questions tagged [kendo-upload]

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

Upload is a Kendo UI () component.


Related tags

127 questions
0
votes
1 answer

Issues with Kendo MVVM file upload control

I was trying to get a Kendo MVVM file upload working along with ASP.NET. This is how my HTML looks for the upload declaration:
Suraj Nair
  • 561
  • 1
  • 8
  • 27
0
votes
1 answer

Removing file in Kendo Upload . Error in jquery.min,js file

I have used the following code to remove the uploaded file on the Remove function of Kendo Upload control $(".k-upload-files.k-reset").find("li").remove(); But I'm getting an error in jquery.min.js: Unable to get property 'length' of…
0
votes
1 answer

Kendo upload the HttpPostedFileBase showing always null In IE11

i am using the kendo upload functionality with knockout. The HttpPostedFileBase in the controller action result always show as null in IE11, Chrome, Firefox. But it works fine when using IE8, IE9. It would be great if any one has solution for this…
0
votes
2 answers

Kendo upload is duplicating the first file

I have a kendo upload with default implementation. @Html.Kendo().Upload().Name("imageUpload").Multiple(true).Events(e => e.Select("selectFile")) the first file I select to upload is getting duplicated I tested this on all browsers I set the select…
Alaa Jabre
  • 1,843
  • 5
  • 26
  • 52
0
votes
1 answer

Kendo upload mvc in ie - no progress bar or percentage

I'm using MVC with Kendo controls. { @(Html.Kendo().Upload() .Name("fileuploaddocs") .Multiple(true) .ShowFileList(true) .Events(events => events.Select("fileuploaddocs_onSelect")) .Events(events =>…
0
votes
1 answer

How to get Creation date for Kendo Upload

I am use Kendo Upload, how to get creation date a file? function onUpload(e) { e.files //I can get modified date only } anyone can help me to get creation date by using kendo or normal jquery? thank you
norton faris
  • 5
  • 1
  • 3
0
votes
1 answer

Kendo upload loses class when events added

Ive got a kendoupload in my gridview: @(Html.Kendo().Upload() .Name("files") ) And this works fine: But when i add events to the upload: @(Html.Kendo().Upload() .Name("files") .Events(events => events …
Daniel Gustafsson
  • 1,725
  • 7
  • 37
  • 78
0
votes
1 answer

upload file in kendo ui mobile application using cordova

how to browse and upload file in kendo UI mobile application using CORDOVA. if anyone done this before please help me to achieve upload file. This upload should work in both android and IOS platform.
user3373819
  • 89
  • 2
  • 10
0
votes
1 answer

Call a SignarR Hub from kendo upload instead of a controller

I'm evaluating KendoUI upload widget to upload an excel file to the server. When the upload completes i call a controller to import the content of this excel file to a SQL Azure database. @(Html.Kendo().Upload() .Name("files") …
fadonat
  • 1
  • 3
0
votes
0 answers

Send file on save event kendo gird

I have the following scenario: I'm using a kendo CRUD grid (MVC) and for each row a user should be able to upload a template. My question is if is possible to send the uploaded templates when the user press Save.
0
votes
1 answer

HttpPostedFile stays null when Kendo UI upload file is used. It works fine when using the select button but does not work when drag is used

I am using Kendo UI upload. It works fine when using the select button but does not work when drag is used in the HttPostedFile; my viewModel property stays null. I have made sure the property name and the Kendo Upload component names are same.…
maxspan
  • 13,326
  • 15
  • 75
  • 104
0
votes
1 answer

Kendo UI - Store image path in database through upload widget in grid

I'm able to upload images and save them to a folder, but the only issue is storing the path in an SQL table. I want to save the Photo path to the database so that it can be displayed elsewhere. This is what I have so far. Item class: public class…
nouptime
  • 9,929
  • 5
  • 22
  • 37
0
votes
1 answer

Fire validation of asp.net razor view page input controls on kendo ui upload select file button

I have an asp.net mvc application with Kendo UI controls. I have an upload file razor view with few input controls on the page. My requirement is to fire the page validation on the file select button for all the other input controls in the page. (at…
0
votes
1 answer

Kendo Upload not showing successful in Play 2.2.2

I have a Kendo file upload call, here is the function: $("#fileUpload").kendoUpload({ async: { saveUrl: "/people", autoUpload: true }, multiple: false, complete: onComplete }); function onComplete(e) { // The…
lulu88
  • 1,694
  • 5
  • 27
  • 41
0
votes
2 answers

Kendo Uploader Not Working

First of all I am new to Kendo Uploder. I have a kendo Uploader in my page . I don't know what I am doing wrong as it didn't hit my VB Method. Markup :