diff -r 913c9751c067 -r 716254ccbcc0 org.symbian.tools.wrttools.doc.WebDeveloper/html/GUID-F18FD3A0-9CCC-4117-8CC4-4222842E8C59.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/org.symbian.tools.wrttools.doc.WebDeveloper/html/GUID-F18FD3A0-9CCC-4117-8CC4-4222842E8C59.html Fri Mar 05 19:11:15 2010 -0800 @@ -0,0 +1,18 @@ + + +
Description:
+The onshow
property is an event handler for the event of when a widget is switching from the background to the foreground. In other words, when an opened widget gains focus, the assigned callback function will be called.
This property is useful for managing the functionality of the widget in relation to other applications on the device.
+Syntax:
+[void] window.widget.onshow = function() { }+
or
+[void] window.widget.onshow = toForeground;+
function toForeground() +{ + // ... +}+