Hi Everyone!
So, here is the deal. This doesn’t work. I need a workaround. The filtering is stuck, and if you have been here in Adalo long enough, you might have figured out why. So, if you are kind enough, I would appreciate your help.
Users are associated with one or more ChildrenID
values through a relationship with a collection called ChildrenID
. For example, a user can have 2 ChildrenIDs
linked to their account.
I want to create an image list that displays images uploaded by any user who has a ChildrenID
matching the value I enter into a field called ChildrenIDInput
on my user account. This means:
- The images displayed should belong to users who have a
ChildrenID
that matches theChildrenIDInput
value I entered. - The filtering should work even if the images were uploaded by other users, as long as the
ChildrenID
is the same.
Key Relationships:
- Users Collection:
- Has a relationship with
ChildrenID
(one user can have multipleChildrenIDs
). - Contains a text field called
ChildrenIDInput
where I can enter a specificChildrenID
to filter the list.
- ChildrenID Collection:
- A collection that stores all the
ChildrenID
values and their relationships with users.
- Little Moments Collection (Images):
- Stores images uploaded by users.
- Has a relationship with the
Users
collection but no direct relationship withChildrenID
.
Goal:
The image list should filter and display images based on:
- The
ChildrenIDInput
I enter in my user account. - Images uploaded by users who have the same
ChildrenID
as the value in myChildrenIDInput
.
Thanks in Advance