Im new to phongeap. I saw you can load page from server when you are changing the current page, for me this is the best solution but I am wondering how slow is this in real life on real device?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can request any page you want from your server and display it through Javascript. However, that wouldn’t look like a native app, as there would be a delay while loading the page. So the solution would be storing the whole layout in the client app, there are several javascript frameworks that ease this task, such as jQuery Mobile or Sencha. This doesn’t mean that you can’t retrieve data from any server, but you could request it in any format you want (Json, XML…) to feed your app.