Sends a child window to the back.
Namespace: MindFusion.Common.UI
File: Container.js
JavaScript Copy Code |
---|
function sendToBack (window) |
WindowBase. The window to send to back.
The following code creates a new WindowHost and then sends the first Window in its windows collection to the back. WindowHost derives from Container:
JavaScript Copy Code |
---|
// create a new instance of the WindowHost control ....... var window = host.windows[0]; if(window != null) |