I want to keep a list of records with multiple fields, and enter them via one form, that shows the existing records as a list made of different text boxes. And a “new” button on the same form that’ll create a new row of textboxes for the new entry.
Is it possible to create controls like textboxes dynamically on a form, as a result of button click? With JS or plugins?
For this you are probably best making a custom web page and presenting it in an iFrame on your form.
I don’t believe creating textboxes dynamically will work very well, I don’t think it would be supported – you would have to change the DOM. Also you would have to implement some weird and overly complicated logic.