I'm using the Kendo UI Upload Control and wanted to allow for multiple files in single Upload, but when adding multiple files at the same time, they are grouped together in the same line item. Is there a way to have each separate file as its own line item when group selecting?,because i want to delete one file from this bunch of file which is uploaded by users. In the screenshot that is linked, there are 4 items,but i want to upload each items in new row.
$('#selectedFiles').kendoUpload({
localization: {
select: 'Attach'
},
multiple: true,
success: function (e)
{
},
select: function (e)
{
}
});
<div class=" form-group">
<div class="col-md-8">
<input name="file" id="selectedFiles" type="file"/>
</div>
</div>