The app is based on the Header/Footer with Navigation mobile template. In the first TTabItem object, there is a list of people. In the second TTabItem object, there is the selected person's details. Data is read from the REST services that are exposed by the PeopleManager.dproj server.
The client implements a simple CRUD operation and uses a subset of the server's services. The service used and the relative URL are mentioned in the following table (you can implement search functionality as an exercise):
HTTP verb |
URL |
Description |
GET |
/people |
This returns a JSON array containing one JSON object for each record present in the PEOPLE table. In each object, the property name is the name of the field, while the property ... |