Appearance
Return
Adding, editing, and deleting records in tables
Create records, update them, and delete them safely using your tables.
Steps at a glance
- Create a table from the
Tablessubtab inData & API. - Create records from the table UI (for quick testing).
- Use your interface workflows to create, update, and delete records for real users.
1) Create a record (for testing)
- Open the
Data & APItab, then open theTablessubtab. - Select a table.
- Click
+ Insertto add a new row, then fill in the fields.
2) Update a record
- In the table, double-click a cell you want to change.
- Update the value.
- Press Enter to save.
3) Delete a record
- Select the record you want to delete.
- Click
Delete. - Confirm the deletion.
4) Do it from the interface (recommended)
When users edit data in your app, do it through workflows so you can validate inputs and keep the UI in sync:
- Bind a form to your record.
- On submit, use an action that updates the record.
- Refresh the list or update the UI state.
Common pitfalls
Records do not update in the UI
- After updating, refresh the list (or update the local variable/table view the UI is bound to).
Users can delete too much
- Add a confirmation step before delete.
- Protect sensitive actions with API access checks when data must be protected.

