I have a query being called on a Mobile Aware App that in turn could call other Queries. I would like to put a 'Back' button on the child queries to return to the one that called them.
So, I created a Custom Javascript Panel Operation and used the following:
<button onclick="history.back()">Back</button>
The button shows up on the Top Panel Toolbar, but when I click on it, nothing happens.
I also tried using:
<input type="button" value="Back" onclick="window.history.back()" />
But that doesn't do anything either.
Is it possible to do something like that?