Hi,
The project: (Trailrides)
I have a small project with three tables:
- Ritten: a "rit" is a simple entry with a date and a name. Equivalent to an event.
- Teams: A team is connected to a "rit" via a FK. It has a enumaration "Klassering", which can be seen as a sort of state.
- Deelnemers (a person): A "Deelnemer" is a person with a name and some other properties. One of them being "Team" FK.
A team is a group of deelnemers, typically two in my case.
The problem:
I have in the admin a collection view on "Deelnemers"
On that view a have some filters:
- BBQ (wether a deelnemer wants to join the bbq or not)
- Rit->Naam: Filter on the rit (via the Team)
- Team->Klassering
Now, when filtering on Rit->Naam the filtering works. Also BBq works fine.
But when I select a enumartion value from Team->Klassering the filter just shows all entries in "Deelnemer"
This is also the case when I use the other properties from Team as a filter, but deleted them to simplify things.
The filtering Team->Klassering works fine in the Admin collection view "Teams".
As said:
Project "Trailrides" within my account.
Can you help?