Right now I created a separate grid but I would like to have the list of attachments part of the file upload control if possible. How do I iterate through a collection and bind the filename, download link, remove etc.. inside the upload control ?
the way I do it now is simply
<div>
<ul>
<li *ngFor=" let a of attachments">
{{a.name}}
<button type="button" (click)="download(a)">download</button>
<button type="button" (click)="deleteAttachment(a)">delete</button>
</li>
</ul>
</div>