LIst going to different pages based on db value via storage
I have a list on a page that has several items. I have sent all the values to storage before loading them into tabels for the list item specifics. on the page including the name of the page it should navigate next to hidden in a non visible label. There are approximately ten different pages that are locations all are stored in the database and in the request/response parameters..
So how do I:
navigate to a page based on a db value that is in local storage and on the page?
I tried this
var pageLocation = Apperyio.('mobilelabel_pageLocation').val();
navigateTo(value);
invoked on click of the mobilelist item.
sadly that did not work so any ideas?
Then I tried this...if(localStorage.getItem('pageLocation')== Apperyio.('mobilelabel_pageLocation'){Apperyio.navigateTo("value");}
else{
} nope so anybody can help a newbie out?
Thanks!