diff -r 4d198a32ac7d -r d4809db37847 plugins/org.symbian.tools.wrttools.doc.WebDeveloper/html/GUID-55F6778A-D1DA-4288-93B2-0863558D34B7.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/plugins/org.symbian.tools.wrttools.doc.WebDeveloper/html/GUID-55F6778A-D1DA-4288-93B2-0863558D34B7.html Thu Aug 19 17:48:04 2010 -0700 @@ -0,0 +1,18 @@ + + +
Description:
+The onhide
property is an event handler for the event of when a widget is switching from the foreground to the background. In other words, when a running widget loses 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.onhide = function() { }+
or
+[void] window.widget.onhide = toBackground;+
function toBackground() +{ + // ... +}+