I created a BDM that has a Cliente, which is made of vehiculosInversion, which is made of a cuentas.
I need a widget select to show the list of names (nombre) of all VehiucloInversion according to the JSON that I am sharing with you:
[
{
"persistenceId": 2199,
"persistenceId_string": "2199",
"persistenceVersion": 0,
"persistenceVersion_string": "0",
"nombre": "Jxxx Cxxxx Pxxxxx",
"idioma": "Portugues",
"codigo": "M001",
"vehiculosInversion": [
{
"persistenceId": 759,
"persistenceId_string": "759",
"persistenceVersion": 0,
"persistenceVersion_string": "0",
"nombre": "D1.",
"cuentas": [
{
"persistenceId": 2122,
"persistenceId_string": "2122",
"persistenceVersion": 0,
"persistenceVersion_string": "0",
"nombre": "Dxxxxx.",
"numero": "61111",
"banco": {
"persistenceId": 87,
"persistenceId_string": "87",
"persistenceVersion": 0,
"persistenceVersion_string": "0",
"nombre": "Citibank NA"
}
}
]
},
{
"persistenceId": 809,
"persistenceId_string": "809",
"persistenceVersion": 0,
"persistenceVersion_string": "0",
"nombre": "D2",
"cuentas": []
}
]
}
]
I tried like this but it doesn't work:
Available values: Clientes (It is the json)
Key shown: vehiculosInversion.nombre
What am I doing wrong?