Create Key Value pair list

0
Hi all, I am new in Mendix. For a project I need to create list of key-value pairs. This list will be used in the project to display values based on the key.  will appreciate if someone can let me know how to create such list. regards, rnv  
asked
3 answers
1

You can create an entity and then create two attributes “key” and “value”. Now a single object of this entity would provide you a key-value pair. Multiple objects of this entity will form a list. And from that list you can search based on key.

answered
1

In addition to Umar’s comment, you could also create an Enumeration (for the key), and then use conditional visibility on your page to show specific content based on this (for the value).

answered
0

thank you very much Umar & Robert

answered