-
Notifications
You must be signed in to change notification settings - Fork 273
Description
Is your feature request related to a problem? Please describe.
I am doing paging by connecting the table paging system in low coder to limit/offset in Postgres and it works great. There is an event that gets fired when the page changes, and I simply run-run my query. But if I turn on the ability to let the user change the page size, there is no way to get a notification that the page size has changed, so the data is now stale and still shows the wrong number of pages.
Describe the solution you'd like
An additional table event "Page Size Changed". Then I can use this to rerun my query.
Describe alternatives you've considered
You can have the query automatically fire when inputs change, but I tend to shy away from those approaches since I get into situations where queries fire before I am ready to have them fire. I like to manually fire and control all my queries.
Additional context