Hello! This question is about mapping of list items which contain grids (see image).
Description of list information:
I have a database of different users. Each user can store contact information for friends (phone number, name, picture). I wish to display all the contacts in a list, with the phone number, name and picture in each list item.
Mapping list when there is only one component, like name, is easy. Just have to map the response to the label and the $ sign to the list to get a looping feature. However, how do I map when there is more than one component in a list?
What I tried:
I created two list services. One list service is for name and phone number mapping. The second list service is for photo mapping (stored in a different collection). Name and phone number mapped to the labels and photo mapped to the picture component. This worked ok for one contact.
To get a looping feature for more contacts, I mapped the $ sign from the first list service to the list item and the $ sign from the picture list service to the picture list item. However, the list did not appear when tested. What am I doing wrong here?