How to show data in a list view based on the enumeration value of a column?

0
On AirTable I can easily create a list which includes a column of single select values (in Mendix this would be an enumeration). I can then have those single select values show up in the list and have the data only be shown with those specific single select values. Each row of data can only have one unique value of the single select value.   I added a picture with a good example of what I want. As you can see I can even minimize the data of a specific value which I also think is a good function.  
asked
2 answers
0

Hi Michael,

 

The easiest solution is not to use an enumeration but an association to a reference object. So you'd created a Status entity with a Name attribute such as "Ausstehende Genehmigung" etc., then add an association from the Record object to the Status. 

You can then use a listview of Status objects where each listview item contains a listview of corresponding Records. 

Hope that helps!

answered
0

Hi,

 

If a understand your problem correctly ,

try this,

1. Filter the list view data with X-path constraint or with Microflow to get only data matches with Enumeration values.

2. Use Group Box or any similar widget to have collapse or hide feature.

Hope this helps ,

If this wasn't helps can you share more details of your domain model.

 

Thanks.

answered