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
ChildrenIDthat matches theChildrenIDInputvalue I entered. - The filtering should work even if the images were uploaded by other users, as long as the
ChildrenIDis the same.
Key Relationships:
- Users Collection:
- Has a relationship with
ChildrenID(one user can have multipleChildrenIDs). - Contains a text field called
ChildrenIDInputwhere I can enter a specificChildrenIDto filter the list.
- ChildrenID Collection:
- A collection that stores all the
ChildrenIDvalues and their relationships with users.
- Little Moments Collection (Images):
- Stores images uploaded by users.
- Has a relationship with the
Userscollection but no direct relationship withChildrenID.
Goal:
The image list should filter and display images based on:
- The
ChildrenIDInputI enter in my user account. - Images uploaded by users who have the same
ChildrenIDas the value in myChildrenIDInput.
Thanks in Advance