Reputation: 991
I'd like to add a popover-style div to collect form data from a user. Maybe four fields, then they close the popover and return to the page. If they have another record of data to enter, then the popover opens again and closes when they submit the data successfully.
I would previously do this with jQuery but I don't know how I would do this in a mobile-responsive way. I am using Boostrap as well.
Any suggestions/recommendations? Below is an example of a simple popover div form I'd made in the past, and am trying to reproduce in Angular.
Upvotes: 0
Views: 343
Reputation: 3911
I would suggest using an angular material dialogue.
I like the bootstrap modal too, but I think angular material is easier to get started with. You will need flexbox for the layout with material if you are not using bootstrap.
Upvotes: 1