I have a dashboard embedded in our React application where filters are passed via URL parameters from React. The filters are intentionally hidden from the dashboard UI, but this causes them to also be hidden in the schedule delivery dialog.
Current Setup:
-
Dashboard is embedded using Looker Embed SDK
-
Filters are passed from React via URL parameters (e.g.,
?Date+Selector=2026-06) -
When users click “Schedule”, the filter does not appear in the schedule dialog
-
Schedules are created with static filter values from the time of creation
What I Need:
-
Filters to remain hidden during normal dashboard viewing
-
Filters to appear in the schedule delivery dialog so users can see/modify them
-
Schedules to use dynamic date logic (current/previous month based on day of month)
Example Use Case:
-
User creates schedule on June 4th while viewing February 2024 data
-
Schedule should automatically use June 2026 data when it runs (dynamic)
-
Currently, schedule delivers February 2024 data every month (static)