
Originally Posted by
hp3
Its my understanding that the left softkey is always for an options menu, at least in WRT 1.0 and 1.1. It is not really a programmable key. You can use the menu object onShow method to detect when a user clicks the left softkey, but clicking the left softkey should still open a basic menu with atleast one option "exit". I dont think you can disable the menu opening behavior of the left softkey. I think this is based upon the conventions of the s60 user interface.
Instead, you could create a control within the WRT application for "done" instead of using the left soft key.
You can configure the right soft key to do what you want and assign a function to it.
menu.setRightSoftkeyLabel("Cancel", notify);
// function to execute when the user clicks the right softkey
function notify(){
alert('right softkey press');
}