Hello Team,
In my Page1, I have some input fields and based on these fields, getting some list result on the same page. In each list record I have one button name as "More Info" and click on it I move to the next page name as "Page2". And here on "Page2" I have on "Back" button to return "Page1".
My requirement is to "get the previous page with all values (like - input values, and list result) as it is. But I am not getting it. when i come to "Page1", I get this page as a new page always.
I tried all these code on "Back" button -
JavaScript-
Appery.navigateTo("Page1", false);
Appery.navigateTo("Page1", {reloadPage: false});
history.back();
And even I tried with Action as "NavigateToPage" without selecting "Use full screen refresh".
Please suggest me, what I can do more.