Page 1 of 1

I have a page that utilizes Google Maps. When the page is navigated to, the back button does not work.

Posted: Wed Jul 16, 2014 5:23 pm
by Dan Hoeck

Any button I have added to the page that onclick, navigates to another page, does not work.


I have a page that utilizes Google Maps. When the page is navigated to, the back button does not work.

Posted: Wed Jul 16, 2014 5:57 pm
by Kateryna Grynko

Hi Dan,

Are there any console errors?


I have a page that utilizes Google Maps. When the page is navigated to, the back button does not work.

Posted: Wed Jul 16, 2014 6:18 pm
by Dan Hoeck

I'm getting the following error on the test page:

Uncaught TypeError: Cannot read property 'msie' of undefined

I am unable to recreate the issue on the published site, because when I click the link to navigate to the Google maps page, the page automatically redirects to www.appery.io.


I have a page that utilizes Google Maps. When the page is navigated to, the back button does not work.

Posted: Wed Jul 16, 2014 6:46 pm
by Kateryna Grynko

Hi Dan,

Is it your custom code that causes the error? Please double check it.
It navigates to appery.io because this address is specified as Link component parameter 'URL', just replace it with the needed URL.


I have a page that utilizes Google Maps. When the page is navigated to, the back button does not work.

Posted: Mon Aug 18, 2014 5:41 pm
by Dan Hoeck

instead of using the default header "back" button, I had to use java instead to make it work. On clicking the custom "back" button (instead of a header back button), I used the following javascript:

{
parent.history.back();
return false;
}


I have a page that utilizes Google Maps. When the page is navigated to, the back button does not work.

Posted: Mon Aug 18, 2014 5:43 pm
by Evgene Karachevtsev

Hello Dan,

Thank you for your update.