How to determine a RowIndex of a new row after it was created using Editor's table.row.add({...}) method?
The row.add() docs show that it returns an API object for the row. You can store the return value in a variable, newRow for example, then retrieve the index: newRow.index()
row.add()
newRow
newRow.index()
Kevin
Kevin, Thank you. It is what I was looking for
Answers
The
row.add()docs show that it returns an API object for the row. You can store the return value in a variable,newRowfor example, then retrieve the index:newRow.index()Kevin
Kevin, Thank you. It is what I was looking for