How to stop table from refreshing on checkbox click

I have a table that is loaded from a query. One of the columns is a checkbox/boolean column. The user can edit this column ONLY. My issue is that every time the user edits a checkbox, before ever clicking Save, the table seems to run it's data-loading query again. I have made sure that my query is on "manually triggered" and that doesn't stop it from refreshing the data on every row edit. I only want the data to refresh after clicking Save or if the user manually clicks the refresh icon in the bottom right. How do I disable this automatic refresh on row edit functionality?

Is the query set to run when inputs change or set to be triggered manually?

Ah, I actually found my problem. I had set a click event on the table cell itself. I was looking for table events at the table level.

Resolved.

Thank you, ScottR!

2 Likes