Is it possible for `textField` to lookup a value from a sub object property?
I've read this documentation, and it's possible to set the textField to lookup to an object property. However, in my case, I'm handling a structured json response, see the data structure below.
I need to set textfield to `member.name`. How do I do this? TIA!
{
results: [
{
member: {
id: 123,
name: 'John Doe'
}
address: {
line1: 'aaaaa',
line2: 'bbbb'
},{
member: {
id: 124,
name: 'jane smith'
}
address: {
line1: 'aaaaa',
line2: 'bbbb'
},
}
],
pagination: {
page: 1,
total: 100,
}
}