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 event to this js function
function selectFile() {
console.log(this.element[0]);
}
the result was this:
As I mentioned this happens only to the first file the rest will go normally
any idea why is this happening?