Page 1 of 1

Loading page optimization needed

Posted: Sat Jan 17, 2015 2:51 am
by Nico Name

Hi. My question is precise.

Is there a way to optimize loading page by making a break (pause) before all the page content has been loaded.

For example :

I have items on a list.
When I clik on a specific item in the list a page "itemDetailPage" appears, with specifi item picture.
Then I come back (back btn) to the list page.
Then when I select another item, it goes on the itemDetailPage BUT it briefly shows the old picture before loading the new one.

The problem is the same with text (but quicker).

So is there a way to show a page and its content in one shot after all the content has been loaded ?

To have the best application feeling when using..

Thank you


Loading page optimization needed

Posted: Mon Jan 19, 2015 8:16 am
by Illya Stepanov

Hi Nico -

You have 2 options:
1) To implement a workaround solution (below);
2) Make your own implementation of web-app that based on JS+CSS+HTML.

For a workaround you need:
1) To clear your page before navigating to a different page;
2) Check if the images are too large;
3) Optimize your CSS for quick page rendering.


Loading page optimization needed

Posted: Mon Jan 19, 2015 10:41 am
by Nico Name

Thank you