Hello,
Could you tell us how can we check this on your App? Take a look at the next doc it will show you how to use mapping correctly http://docs.appery.io/documentation/u...
Hello,
Could you tell us how can we check this on your App? Take a look at the next doc it will show you how to use mapping correctly http://docs.appery.io/documentation/u...
Hello! You have some problems with app logic. For example:
1) services are not sync so you can't invoke service and navigating to another screen with the same event as you have on Home page (mobilebutton_24-Click)
2) you need to watch data you save to localStorage. For example on Home screen in service mobilebarcode1 you save just scanned value into sku localStorage. On Results page in service restservice2 you save into sku localStorage variable:
prereturn '{"sku": "' + value + '"}';/pre
So into sku variable might be data in different formats which are not easy to use in mapping.
Functionality you need is possible to add through Appery.io, but you need to figure out app logic and services work. Please follow this tutorial http://docs.appery.io/tutorials/build..., there you can find information you need.
so it sounds like you are saying I can't have the search and the barcode scanner on the same page?
You can have Barcode and other services on the same page.
I followed this tutorial but it keeps leading me to just creating the listview and not how to pull it from a search feature.
What is the correct way to map the query from allwinesnew3_query search to Winelist Results if the service is already invoked?
Hi Scott,
You do not pass parameter "X-Appery-Session-Token" in service Request.
In Response parameters, map response array item to "wine" component.
...on the Home page or Results page?
....nevermind. i have the original search results working now but I still need the results to open up a list view that I can click onto the item which will open into the Results page instead of just the items in plain text. Thanks in advance for help on this..