On my Bubble app I have users filling out a form with various fields to create an invoice.
I have a button to create a new line item on the invoice. I want the users to be able to add 10+ lines to an invoice.
The only way I have been able to make it work so far is to have 10 groups with the content and 10 buttons which are conditionally hidden. Each button changes the state and displays the next group with the content and button.
I think I could do this with a repeating group but I do not want to create a database entry every time a user creates a new line item. Is there a more effective/ cleaner way of doing this? Thanks