Need assistance to my previous question
var cInput = xfa.host.response("Enter number of rows you want to add:", "Add rows", "1", false),
n = parseInt(cInput, 10) > 0 ? parseInt(cInput, 10) : 1,
i = 0;
for (i; i < n; i += 1) {
_Row1.addInstance(true);
}Good day, I posted a question about adding rows to a table and the above script from Radzmar was the solution. I posted a follow up question to my answer and have not received a reply so far, so I'm reposting it here just in case it was overlooked.
Is there a script to remove rows the same way? In case the user adds too many rows, I do not want them to have to remove the rows one at a time. Your assistance is appreciated.
