How can i load table data on the click of the button

Currently I have a table on the main page and when it launches it starts loading data automatically and often the data is huge so it hangs up the page. Can i trigger it at the click of a button ?

Hey rahulgupta! Thanks for reaching out. It seems like the query that loads data for the table is set to run Automatically when inputs change, which will run on page load. You should be able to change that query to run only when manually triggered. You could then put a button component on the page that triggers that query.


This will prevent the query from running, so any other queries can run on page load. You will have control over when the large amount of data is retrieved.