const { myTable } = tisa.form.fieldconst myRow = myTable.rows[0]console.log("Values of the first row are: ", myRow.values) Copy
const { myTable } = tisa.form.fieldconst myRow = myTable.rows[0]console.log("Values of the first row are: ", myRow.values)
Readonly
Gets row's id.
console.log("Row's id: ${myRow.id}") Copy
console.log("Row's id: ${myRow.id}")
Gets row's index.
console.log("Row's index: ${myRow.index}") Copy
console.log("Row's index: ${myRow.index}")
Gets or sets the row's cell values
myRow.values = {...myRow.values, "department": "Finance"} Copy
myRow.values = {...myRow.values, "department": "Finance"}
column identifier of the cell to be returned.
row's cell based on columnInternalName
const myCell = myRow.cell("department")myCell.value = "Finance" Copy
const myCell = myRow.cell("department")myCell.value = "Finance"
console.log("Deleting table row.")myRow.delete() Copy
console.log("Deleting table row.")myRow.delete()
Deletes the row.
Example