I have a form that allows users to add and delete rows om a table. This works fine while the user is viewing and editing the form, but when the form is saved and then reopened, previously deleted rows reappear. How can I make sure my deleted rows stay deleted?
The script for click for the delete button reads:
this.parent.instanceManager.removeInstance(this.parent.index);
Thank you for any insight into what is causing the deleted rows to reappear when the document is reopened.
Noam