Page 4 of 5

can search results load in listview?

Posted: Sat Oct 26, 2013 2:06 pm
by Igor

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...


can search results load in listview?

Posted: Mon Oct 28, 2013 7:33 pm
by Scott Schechtel6280324

i keep getting just the Wine List page with the list component that only has the main list option after clicking Search. It is supposed to open up the product list and then I need to click the result to go to the results page. Screenshot
Image


can search results load in listview?

Posted: Mon Oct 28, 2013 9:21 pm
by Maryna Brodina

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.


can search results load in listview?

Posted: Tue Oct 29, 2013 1:48 pm
by Scott Schechtel6280324

so it sounds like you are saying I can't have the search and the barcode scanner on the same page?


can search results load in listview?

Posted: Tue Oct 29, 2013 3:13 pm
by maxkatz

You can have Barcode and other services on the same page.


can search results load in listview?

Posted: Tue Oct 29, 2013 3:38 pm
by Scott Schechtel6280324

I followed this tutorial but it keeps leading me to just creating the listview and not how to pull it from a search feature.


can search results load in listview?

Posted: Wed Oct 30, 2013 3:34 am
by Scott Schechtel6280324

What is the correct way to map the query from allwinesnew3_query search to Winelist Results if the service is already invoked?


can search results load in listview?

Posted: Wed Oct 30, 2013 8:42 am
by Kateryna Grynko

Hi Scott,

You do not pass parameter "X-Appery-Session-Token" in service Request.
In Response parameters, map response array item to "wine" component.


can search results load in listview?

Posted: Wed Oct 30, 2013 6:46 pm
by Scott Schechtel6280324

...on the Home page or Results page?


can search results load in listview?

Posted: Wed Oct 30, 2013 7:27 pm
by Scott Schechtel6280324

....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..