angularjs - Angular 2 delete a file from uploaded list of files -
i new angular 2. uploading files , displaying them in template. on checking checkbox when press delete, not deleting required file list. below code template <form #f="ngform" (ngsubmit)="onsubmit(f.value)"> <table cellpadding="4" class="grid" > <thead><tr><th></th><th>document name</th><th>document id</th><th>document type</th><th>source</th> <th>document date</th><th>trip id</th><th>notes</th><th>action</th></tr></thead> <tbody *ngfor="let file of files"> <tr > <td class="form-group"><input type="checkbox" [checked]="checked"></td> <td class="form-group"><input type="text" class="form-control" ngcontrol="file.name">{{file.name}}</td> <td class="fo...