How to delete only one text field out of many copies using a JS
If I add a field with the same name twice using the script and method
this.addField("name", …… )
then in the field collection I will have two fields named "name#0" and "name#1", which correlates with the values order property in the field collection.
Calling this.removeField("name") will unfortunately delete both fields.
Is it possible to delete only the field, e.g. "name#0", of course, using a script?
