Reference Selector for multiple entities.

0
When adding a task, i want to select a meeting, and select the attendees coming to that meeting. I have a reference selector for that meeting, but cannot add another reference selector to select from attendees. I thought i will get the Attendees_meeting object from Meeting obj, but its not there. 
asked
1 answers
1

You can only use reference selection from the entity owning the relation.

In your case

Tasks can have a reference selector for Meeting

Attendees can have a reference selector for Meeting.

I'm not totally sure what you actually want to model, but the straightforward solution seems to be: use a reference set from Meeting to Attendees, then you can use a reference set selector.

Edit:

https://docs.mendix.com/refguide/reference-selector#constrained-by

answered