I created a table in livecycle es 8.2. I have buttons to add and delete
rows. The add button works fine, but the delete button is deleting the
wrong row. For instance, in the PDF preview mode, if I add three rows
and try to delete the third, the second is deleted.To add a row, I am
using the code:usertable._Row1.addInstance(1);To delete a row, I am
using the code:usertable._Row1.removeInstance(1);I've tried a lot of
variations that I found online, include (this.parent.index) and (true).
I don't ...