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…
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")
…
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…
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
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…
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…
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…
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…
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…
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?
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…