why the auto-login code is not working?
Hi, I looked this post https://getsatisfaction.com/apperyio/... and used the login service code for auto-login.
var login = localStorage.getItem("login");
var pass = localStorage.getItem("pass");
if(login)
loginService.execute({data: {username: login, password: pass} });
I indeed had the login and password variables stored in my lsv. but I still cant skip the login page. The worse thing is if I use this auto-login code in pageshow event, I even cant navigate to the page with the right login/password information.