Date Picker Not Updating Filtered Items by User and Date

Hello!

I’m trying to add a date picker so a user (driver) can select a date and the screen will show only the stops/items assigned to that user for that specific date.

Right now when the date changes it only updates the date in the user row, but the items and routes on the screen do not change based on the selected date. (Ex. 3/18/2026 shows 3 route and multiple items then driver changes dates to 3/19/2026 and the driver doesn’t have a route that day the list should remain blank)

How should the data or filter be structured so the screen updates correctly by user + selected date?

Thanks In advance.

Generally said, the list of routes should be filtered through either:

  • A relation
  • A query
  • The native filter on the collection component

And tie to the user’s selected date value.

Please show us some screenshots on how you’re setting up, especially how you tie the selected date to the collection on your screen.