hello i am trying to get full path of ken-do upload control in jquery but its showing only
c:/fakepath/ImageName.jpg
so anyone can tell me how can i get full path of kendo upload in jquery. this is my jquery.
function onSelect(e) {
alert("Select");
var src = $("#files").val();
var path = $("#files").attr("src");
alert(src);
alert(path);
}
this is my kendo
<div>
@(Html.Kendo().Upload()
.Name("files")
.Multiple(false)
.Messages(msg => msg.Select("Browser"))
//.Async(a=>a.AutoUpload(false).Save("Save","Imagetest"))
.Events(e => e
.Select("onSelect").Remove("onRemove"))
)
</div>