Page 1 of 1

Windows Phone Button Problems & Back Stack

Posted: Sat May 23, 2015 7:58 pm
by Michael Luce

Hi,

I have built an app and submitted it to both the Google Play store and the Apple app store with no problems. With the windows phone version, I am exporting it as a visual studio solution so that I can open it up in the emulator to get some screenshots.

The problem is, the first page loads but none of the buttons on the page work. It won't navigate to another page. Does anyone have any ideas why it works fine on the other two platforms?

Also, another question is how to clear the back stack on windows phone? I have some pages that automatically divert the user to another page but need to be able to remove them from the back stack.

Any pointers would be appreciated!


Windows Phone Button Problems & Back Stack

Posted: Mon May 25, 2015 9:06 pm
by Michael Luce

As a note, it works when deployed to a test device, just not in the emulators.

I also need to call the following code in c#, but dont know how to do it in Appery;

NavigationService.RemoveBackEntry();


Windows Phone Button Problems & Back Stack

Posted: Mon May 25, 2015 9:16 pm
by Illya Stepanov

Hi Michael -

Thanks for this update, we'll tell this to our developers team.


Windows Phone Button Problems & Back Stack

Posted: Wed May 27, 2015 8:13 am
by Michael Luce

NOTE: I have managed to clear items from the back stack by using javascript instead of Appery's in built NavigateTo method. Using the following code. It will essentially remove the page being navigated from in the back stack.

window.location.replace("logon.html");

Instead of;

Apperyio.navigateTo('Logon', {});