How to add Dynamic row in mendix

0
How can i add rows in Mendix dynamically. Suppose we have below scenario Here once user clicks on "Add More" Button than a new row should be added like below screen When user click on edit/Delete it should behave accordingly. Do we have any widget for doing this ?
asked
1 answers
1

You could do this using a list view and microflows. Just create a listview  that is editable andt  has an ‘add more’ and ‘delete ‘microflow button in it. When you click ‘add more’ the microflow should create a new object and when you click on delete you delete the object.

answered