Hi
I have a page that is populated by a generic service on Page show.
All works well, except:
I need to build 'previous and next' buttons, which set some localStorage variables and navigate to the same page to show different data.
I am calling as follows:
Appery.navigateTo(pagename,{
transition:"none",
allowSamePageTransition: true
});
or:
$.mobile.changePage(pagename+".html",{ .... });as above
(I have tried with and without 'transition:"none")
Both attempts return:
Uncaught TypeError: Cannot call method '_trigger' of undefined
jquery.mobile-1.3.0.js:4063
If I use: location.href = pagename + ".html";
the page gets called ok, but I can't accept the flashing transition
Any hints please?
Thanks a lot
John