Dashboard Filter select dropdown reloads all the widgets
I am filtering widget data by following this guide: https://filamentphp.com/docs/4.x/widgets/overview#filtering-widget-data
I have a Dashboard page with following filters form. When opening the select dropdown, it reloads all the widgets available on page and runs all the queries even before showing the select drop down. This delays the select drop down options until all the widgets are reloaded.
All the widgets are using
I need some help to understand and avoid reloading all the data unless user actually selects something.
I have also tried Filtering widget data using an action modal
But same problem with Modal as well, even clicking the Modal action button reloads the page and runs all the queries before even opening the Modal.
I have a Dashboard page with following filters form. When opening the select dropdown, it reloads all the widgets available on page and runs all the queries even before showing the select drop down. This delays the select drop down options until all the widgets are reloaded.
All the widgets are using
InteractsWithPageFilters trait.I need some help to understand and avoid reloading all the data unless user actually selects something.
I have also tried Filtering widget data using an action modal
But same problem with Modal as well, even clicking the Modal action button reloads the page and runs all the queries before even opening the Modal.