Kendo UI Upload - synchronous mode, group selection as separate files

I use Kendo UI Upload Control and want to allow the use of multiple files in synchronous mode, but when adding multiple files at the same time, they are grouped in one position. Is there a way for each individual file to be its own separate position when choosing a group? In the screenshot that is connected, there are 2 positions, but I would like to have 3 positions; One for each file

JavaScript:

$('#files').kendoUpload({ localization: { select: 'Select files to upload<br />-or-<br />Drag files here to upload' }, multiple: true, showFileList: true, success: function (e) { }, select: function (e) { } }); 

HTML:

 <form method="post" action="/Api/UploadUrl" style="width:100%"> <div> <input name="files" id="files" type="file" /> <p><input type="submit" value="Submit" class="k-button" /></p> </div> </form> 

Grouping screenshot: http://i.imgur.com/sMl8RSl.png

+4
source share
1 answer

Files cannot be listed in different list items. The synchronous download widget is no different from the usual <input type="file" /> element using several attributes , which means that all files are added to the FileList of the current input.

0
source

All Articles