diff -r 913c9751c067 -r 716254ccbcc0 org.symbian.tools.wrttools.doc.WebDeveloper/html/GUID-9FE7E588-7621-4067-9BEC-4F59855BB42F.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/org.symbian.tools.wrttools.doc.WebDeveloper/html/GUID-9FE7E588-7621-4067-9BEC-4F59855BB42F.html Fri Mar 05 19:11:15 2010 -0800 @@ -0,0 +1,22 @@ + + +
Description:
+The onShow
property of the menu object is an event
+handler for the event of when the options menu is open. In other words, when
+the end user presses the left softkey, the system will fire an event and a
+widget can catch the event by providing a callback function.
For more general information on using an options menu in your widget, +see Using softkeys.
+Syntax:
+[void] window.menu.onShow = function() { }+
or
+[void] menu.onShow = menupaneShown; +function menupaneShown() +{ + // ... +}+