This is a migrated thread and some comments may be shown as answers.

Remove file from the upload list after its deleted

3 Answers 1898 Views
Upload
This is a migrated thread and some comments may be shown as answers.
Bhushan
Top achievements
Rank 1
Bhushan asked on 25 Apr 2017, 12:47 PM

Hi,

 

     I've a custom template to delete, download uploaded files. I would like to clear the deleted file from the upload control list after calling the 'deleteFiles' JS function in my code. Please do let me know how to achieve this. Thanks.

 

Code snippet:

<script id="fileTemplate" type="text/x-kendo-template">
    <span class='k-progress'></span>
    <div >
        <label class="control-label">Name: #=name#</label>
        <button type='button' class='btn btn-primary glyphicon glyphicon-remove pull-right' id="deleteFile" onclick="deleteFiles('#=name#', '#=files[0].extension#')"></button>
        <button type='button' class='btn btn-primary glyphicon glyphicon-download pull-right' id="downloadFile" onclick="downloadFiles('#=name#')"></button>
        @*<span class='file-icon #=addExtensionClass(files[0].extension)# pull-right'></span>*@
        @*<p class='file-heading file-size-heading'>Size: #=size# bytes</p>*@
    </div>
</script>

3 Answers, 1 is accepted

Sort by
0
Ivan Danchev
Telerik team
answered on 26 Apr 2017, 12:13 PM
Hello Bhushan,

I replied in the support ticket you submitted with the same subject. To sum it up here, files can be removed from the Upload's file list with jQuery.
<input type="button" value="Remove files" onclick="clearFiles()" />

All files:
function clearFiles() {
    $(".k-upload-files > li").remove();
}

A file specified by its position in the list:
function clearFiles() {
    $(".k-upload-files > li:eq(1)").remove();
}

A file specified by its uid:
function clearFiles() {
  var uid = "0892e402-c245-42bf-9e81-28414ae2a290";
   
  $(".k-upload-files").find("[data-uid='" + uid + "']").remove();
}


Regards,
Ivan Danchev
Telerik by Progress
Try our brand new, jQuery-free Angular 2 components built from ground-up which deliver the business app essential building blocks - a grid component, data visualization (charts) and form elements.
0
Bhushan
Top achievements
Rank 1
answered on 26 Apr 2017, 12:17 PM
Thanks for the solution Ivan! I will try this and let you know.
0
Ivan Danchev
Telerik team
answered on 28 Apr 2017, 06:21 AM
Hello Bhushan,

Take your time. Feel free to get back to us if you have other questions on the Upload's functionality or its API.

Regards,
Ivan Danchev
Telerik by Progress
Try our brand new, jQuery-free Angular 2 components built from ground-up which deliver the business app essential building blocks - a grid component, data visualization (charts) and form elements.
Tags
Upload
Asked by
Bhushan
Top achievements
Rank 1
Answers by
Ivan Danchev
Telerik team
Bhushan
Top achievements
Rank 1
Share this question
or