Back to specific previous page and refresh it

Hello.

My navigation sequence is: page1 -> page2 -> page 3.

When i save a form on page3 i want back to page1 and refresh it. Im doing:

mainView.router.back(‘page1’, {force: true, ignoreCache: true});

Goes to page1 but does not refresh it.

any ideas? thanks.

You can replace “back” with “navigate” and then add reloadAll:true to the options. Does that achieve the correct result?

1 Like

Thanks Tim. I forgot to indicate that there are other pages before.

Page X -> Page Y -> Page 1 -> page 2 -> page 3.

Using navigate with reloadAll then lost the previuous pages to page1.