How to Add input Box within same page on button click

0
Want to add multiple input boxes on button click. exactly same like  below image. if we click on add button then bellow text box needs to be create . also  if want to delete any text box  if it is possible through microflow then plz give me idea how do it in microflow.  
asked
2 answers
0

You can use conditional visibility to hide and show input boxes (and other widgets) on a page.  You will get the best performance using a nanoflow when you click the button, since nanoflows execute client side.  In the nanoflow, you can change attributes which control the visibility of the widgets you want to show or hide.

Conditional Visibility documentation can be found here: https://docs.mendix.com/studio/page-editor-widgets-visibility-section#1-introduction

answered
0

conditional visibility will help you, on your snippet place all your max needed input and then on click make the desired input field visible …

you can control the visibility based on conditions or values,...

answered