file upload progress is not synchronizing properly on the view(html) #691
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?
in .ts
here, uploadCopy is another
Here, the variable 'uploadStatusProgress' is not getting updated on the html whenever its get changed.
Could anybody provide useful solution on this asap, please?
You can use ChangeDetectorRef
constructor(private detector: ChangeDetectorRef)then
this.uploader.onProgressAll = (progress: any) => this.detector.detectChanges();thanks @sdoubey , its working