05-11-2010 05:20 AM
Hi,
I'm developing an app that only has two pages; a login page and then the main page. The main page then displays various information by manipulating the DOM. Each 'screen' on the main page can link to other 'screens' (by showing and hiding parts of the DOM).
Is there anyway to disable the Escpae Key so when a user clicks it they're not force back to the login page? Or even better, can I capture the event and fire a function to display the previous 'screen'?
Regards.
Solved! Go to Solution.
05-11-2010 06:09 AM
An example of trapping the back button can be found here:
http://www.blackberry.com/developers/docs/widgetap
You can then perform any functionality you desire ![]()
05-11-2010 06:13 AM
Excellent - thanks Tim!