WindowBase.detach override.
Namespace: MindFusion.Common.UI
File: Window.js
SyntaxJavaScript
Copy Code
|
|---|
function detach () |
ExampleThe following code closes a Window, whose title is "Close". First, the event handlers are detached.
JavaScript
Copy Code
|
|---|
| if(window.title == "Close") { window.detach(); window.close(); } |
See Also