Search
ImagePicker.detach Method
See Also
 






Picker.detach override.

Namespace: MindFusion.Common.UI
File: ImagePicker.js

 Syntax

JavaScript  Copy Code

function detach ()

 Example

The following code makes the imagePicker invisible and detaches its event handlers when the Window, which renders it, is closing.

JavaScript  Copy Code
function windowClosing(sender, args)
{
     imagePicker.visible = false;
     imagePicker.detach();
    
}

 See Also