diff -r 4d198a32ac7d -r d4809db37847 plugins/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/plugins/org.symbian.tools.wrttools.doc.WebDeveloper/html/GUID-9FE7E588-7621-4067-9BEC-4F59855BB42F.html Thu Aug 19 17:48:04 2010 -0700 @@ -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() +{ + // ... +}+