Regarding view for input reference set selector

0
I want allow user to add different tags to a particular event in a page and I want to display this added tags in a Overview page which shows Overview page for a event. I am not able to access that attribute in a association . My domain model is   So I want to access these added tags for a event in  Event_Overview page.   But I am not able to access that tag entity’s attribute...want Help  I have used input reference set selector so as I can choose multiple tags for a single event or else what I can do ?
asked
1 answers
1

That's because of the widget you are using. It's used for single attributes. How should Mendix or the client know which of all the associated objects you need?

So either give each Tag-object a unique identifier to be able to create seperate dataviews for each object. This approach however limits you to a specific amount of dataviews, it's not flexible.

So the best way to work with a *-* or 1-* association is to use a grid, listview or template grid to show multiple objects (Tags) associated to the one object shown (Event). In this case I'd say a template grid should be most flexible to show it in a way that suits your needs.

answered