I have this json format: { "id": "id", "uuid": "uuid", "label": "label", I want to map "id" to the Mendix object id in my map, but it's not in the list of entity attributes. How can I get the id in my json string anyway?
asked
Ruben FC de Rijcke
2 answers
2
Hi Ruben,
You would need to create an attribute in your entity to store this ID. You aren't able to change the Mendix ID value.
answered
Austin McNicholas
0
Hi Austin, that is indeed what I did. I have the app retrieve the ID through Java now. I was hoping there would be a more elegant solution, but this works. Thanks!