3

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.enter image description here

$('#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>
  • How about using External Template showing files? http://demos.telerik.com/kendo-ui/upload/templates – Jarno Lahtinen Aug 21 '14 at 14:22
  • @japi : it's works with Aync Kendo upload but i have to Upload files and then after user press save button and all these files are uploaded so i can not use Async that time.. – Jaydevsinh Jadeja Aug 22 '14 at 06:54

0 Answers0