"Edit multiple rows"
This commit is contained in:
parent
296238ad1a
commit
ce98bb884e
|
@ -127,7 +127,7 @@ describe("Internal API - Table Operations", () => {
|
||||||
await config.rows.add(<string>addColumnData._id, newRow)
|
await config.rows.add(<string>addColumnData._id, newRow)
|
||||||
}
|
}
|
||||||
|
|
||||||
//Search multiple rows
|
//Search rows with pagination
|
||||||
const [allRowsResponse, allRowsJson] = await config.rows.searchMultiPage(<string>createdTableData._id, searchBody(<string>createdTableData.primaryDisplay))
|
const [allRowsResponse, allRowsJson] = await config.rows.searchMultiPage(<string>createdTableData._id, searchBody(<string>createdTableData.primaryDisplay))
|
||||||
|
|
||||||
//Delete Rows from table
|
//Delete Rows from table
|
||||||
|
@ -135,7 +135,7 @@ describe("Internal API - Table Operations", () => {
|
||||||
rows: [allRowsJson],
|
rows: [allRowsJson],
|
||||||
}
|
}
|
||||||
const [deleteRowResponse, deleteRowData] = await config.rows.delete(
|
const [deleteRowResponse, deleteRowData] = await config.rows.delete(
|
||||||
<string>addColumnData._id,
|
<string>createdTableData._id,
|
||||||
rowToDelete
|
rowToDelete
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue