I am implementing a custom filter-like widget that lets users change certain variables within the app. I want those variables to only "affect" the queries once. Look at the attached image. Because of this, I cannot use the selected dropdown items and date picker value directly in the query. I have it set up such that when the apply button is clicked, the values mentioned are assigned/updated in the appsmith.store. There are two issues:
- When the apply button is tapped, the query params change but the queries do not run automatically.
- If I force them to run by calling them via
.run()method, the widgets showing ddata do not show the latest data until I tap theApplybutton again.