Auto Save Table

I would like to see an "Auto Save" for tables & a setting that when clicking away from a table cell it would auto save & refresh the table without doing the usual component update flash on the screen, and possible the ability to refresh on a schedule, like every minute.

Hey @rcanpolat!

Tables have a "Cell change" event that you can add a handler for, similar to how you would in these docs. By replacing the "Save changes" event with the "Cell change" event, your save query will trigger whenever a user edits a cell.

It's also possible to set up a query to run periodically! If you set your query to "Run automatically when inputs change" and then navigated to the "Advanced" tab, you should see an option to do so:

Does that work for your use case?