How to show users name in the list item?

0
I have a simple app with a list, where users can add/remove items. I used Mendix default accounts overview page to create users. Now I need to make the list items user-specific, so how can I implement the following: --- When a user creates an item in the list, the user's name should be added to the item. So if another user will look at the same list, he will still see the name of the user who created this item. I tried to create a new User entity which, connected to the default Mendix user entity via generalization, but it didn’t work (maybe there was some mistake), so I would be grateful for an explanation or a screenshot, how it can be implemented. Thank you in advance!  
asked
1 answers
0

If you want the name of the user that created a record you can use the standard owner attribute from the system members section in an entity.

See https://docs.mendix.com/refguide/entities#2-4-3-store-owner.

answered