Reputation: 51
I have a form in angular 4. and i am trying to post the form into a server. What is the way to add images in a from using angular4 with progress bar?textboxes and dropdowns The form is already having some when i am trying to load an image, it must show progress bar when the image is loading.
Upvotes: 0
Views: 483
Reputation: 1211
Use PrimeNg controls:
<p-fileUpload name="myfile[]" url="./upload.php"></p-fileUpload>
Upvotes: 1