Hi all,
I'm trying to create an app with two pages:
Starting page with a list of items linked to the second page of the app with specification of that item.
Example:
Page one
item 1
item 2
item 3
When I click on item 1 I will go to another page with details of item 1
Item 1 title
item 1 body
All results are on my server with a backend service.
mysite.com/list contains a list of all items
mysite.com/list/id contains details of the selected item where id is the id of the item
(mysite.com/list/1 contains details of item 1 etc...)
I've followed this tutorial:
http://devcenter.appery.io/tutorials/...
I've been able to create both services:
List: mysite.com/list with no requests
Item: mysite.com/list/{id} with id request
Both of them have been tested and are working as expected in the test tab.I've been able to see a list of items, but when I click on the item the second page returns undefined for both field Title and Body.
Is there anything I'm missing in the way I do pass the parameter from one page to another.
Also, is there a better way to pass the item ID from a list to his page.
Thanks in advance.