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
source share