Page 1 of 1

navigate to another page on page load

Posted: Tue Mar 18, 2014 6:52 pm
by luke315774

I'm invoking some javascript on pageload (the page is named "Main") :

var sessionid = localStorage.getItem('sessionid');
if (sessionid) {
Appery.navigateTo('Crmcontacts', {});
} else {
Appery.navigateTo('Login', {});
}

When I test inside the browser, my login screen shows up as expected. Strangely, when I test inside the Appery tester mobile app (either on Android or Iphone), I get some flickering and the "Main" page is shown... Am I doing it wrong?


navigate to another page on page load

Posted: Tue Mar 18, 2014 7:08 pm
by Maryna Brodina

Hello!

Try to do navigation on page Show event instead Load.


navigate to another page on page load

Posted: Tue Mar 18, 2014 7:32 pm
by luke315774

Solved my problem. Thank you