In this video I demonstrate how to create a table that can expand based on user input. Here’s the JavaScript code used for the command buttons:
cmdAdd:
// JavaScript to add a row to a table
var rowNum = this.parent.index +1;
this.parent.parent.instanceManager.insertInstance(rowNum);
cmdDel:
//JavaScript to delete a row from a table
var rowNum = this.parent.parent.index;
this.parent.parent.instanceManager.removeInstance(rowNum);