Hello, I have create a test REST service that returns the following array result as was tested using appery.io service test:
[
{
"name":"abc"
},
{
"name":"def"
}
]
next I mapped service response to a list component on the page, such that $ is mapped to list item (for some reason I am not able to map it directly to the list component?) and 'name' is mapped to list item - text property. See screen shot:
However when I test my app and execute the service in the browser the list component doesn't show up at all??? I am able to see that the service is executed successfully and correct response is returned using Chrome - developer tools.
This service is using jsonp as data type. I also tried using json and appery.io proxy but that leads to errors when invoking the service.
Here is a link to my test page: http://appery.io/app/mobile-frame?src...
thanks for your help!