Is it possible to set up a table so that a user can insert a row in the middle of an already existing table with multiple rows.
let's say I've got a dynamic table and the user has created 10 rows. I'd like the user to be able to click on row five and be able to click a button allowing the user to create a blank row above (or below) row five.
Table1._Row1.addInstance(1);
//use 'this.parent.index-1' if you want new row to be
//before the "current row" but check that it doesn't become -1.
Table1._Row1.moveInstance(Table1._Row1.count-1, this.parent.index+1);