Hello,
I'm trying to make a reset button clear the entire added rows in a dynamic table.
I created a table that allows expansion/contraction and all I want for the reset button is to reset my table to the defaulted state when clicked on, aside from clearing all the data on the form.
Right now I have this line of code added to my reset button:
TableForm.Table._Students.removeInstance(this.parent.index);
However, all it does it to clear one row at the time per click when what I really want it to do is to clear all the extra rows in one single click.
Thank you very much!!!