Hi,
I’m using Navigator7 addon in Vaadin to make page navigation, now I have a requirement that I need to put a button on my page to implement the similar feature like Browser’s Go Back button did.
How can I implement it?
Best wishes,
Oliver
Hi,
I’m using Navigator7 addon in Vaadin to make page navigation, now I have a requirement that I need to put a button on my page to implement the similar feature like Browser’s Go Back button did.
How can I implement it?
Best wishes,
Oliver
I don’t use navigator7 but if all you want is simulating the click on the back button you should be able to do :
getMainWindow().executeJavaScript("history.back()");
Hi Mathias,
Thanks for your help.
It works perfect for me.
Best wishes,
Oliver