Hey @scottcressman! The best way to have users delete rows from a table is with a button that triggers a delete query. Your query should look for {{table1.selectedRow.data.id}}
or whatever your unique ID is for the record.
You can do this using a standalone button component next to the table, or you can add a custom column (aka calculated column) to the table with the type button
. In either case you'll want the button to trigger your delete query.
Here's an example using the custom column:
Oh also, you should have your delete query trigger a refresh of the table by using the "on success trigger" section of the delete query: