Multiple file selection bug #1025
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
When selecting multiple files the text is not updated with number of selected files or the name of it.
I have found a workaround with this, aside the input field I have used:
<p>Files uploaded: {{ uploader?.queue?.length }}</p> <p class="files-uploaded" *ngFor="let item of uploader.queue"> <strong> {{ item?.file?.name }} <button type="button" class="btn btn-danger btn-xs"(click)="item.remove()"> <span class="glyphicon glyphicon-trash"></span> Remove </button> </strong> </p>In this way you can see the names of the files uploaded, and also you can delete them.