Page 1 of 2

Navigate To Page: Use Full Screen Refresh

Posted: Fri May 04, 2012 7:35 pm
by Al Veitas

Hi, can someone explain the differences of the "under the hood" behavior when "Use Full Screen Refresh" is selected or not for a "Navigate To Page" ? (or provide a link to doc)?

Thanks,
Al


Navigate To Page: Use Full Screen Refresh

Posted: Fri May 04, 2012 11:16 pm
by maxkatz

A full page refresh will reload the entire page. The other options are more Ajax-like. The target page will be loaded, and you will see an Ajax-like transition to it. You won't see the page flickering or going blank (for a sec) as you do with a full page refresh.


Navigate To Page: Use Full Screen Refresh

Posted: Tue Apr 09, 2013 9:32 pm
by SteveLacy

What is the proper syntax to force a page refresh when executed via javascript?

Is the following correct?:

Tiggzi.navigateTo('HomeBasic', {refresh: true});


Navigate To Page: Use Full Screen Refresh

Posted: Tue Apr 09, 2013 11:14 pm
by maxkatz

Navigate To Page: Use Full Screen Refresh

Posted: Tue Apr 09, 2013 11:27 pm
by SteveLacy

that worked great!


Navigate To Page: Use Full Screen Refresh

Posted: Fri Apr 12, 2013 7:31 pm
by Sean Kelley

Hi
I am curious about saving the browser history so that I can still have a back button if I reload the page I am on with itself:

Tiggzi.navigateTo('myPage', {reloadPage: true});


Navigate To Page: Use Full Screen Refresh

Posted: Fri Apr 12, 2013 7:57 pm
by Kateryna Grynko

Sean,

Try:
codeTiggzi.navigateTo('myPage', false);/code
When navigation there Full Screen Refresh would be.


Navigate To Page: Use Full Screen Refresh

Posted: Fri Apr 12, 2013 10:59 pm
by Sean Kelley

this still does not give me a back button unfortunately


Navigate To Page: Use Full Screen Refresh

Posted: Fri Apr 12, 2013 11:19 pm
by Illya Stepanov

Hi Sean - please describe exactly what you want to get as a result?


Navigate To Page: Use Full Screen Refresh

Posted: Fri Apr 12, 2013 11:26 pm
by Sean Kelley

I do not want to loose my back button when I reload the page.

The reason I am reloading the page is that I have changed on screen things such as showing images and changing button icons, but I want to stay on the same page- just have it look differently and be able to go back to page I was at before I got there.