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…
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…
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…
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
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
…
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.
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") …
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.
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.…
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…
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…
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…
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 :