Search
Picker.detach Method
See Also
 






Control.detach override.

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

 Syntax

JavaScript  Copy Code

function detach ()

 Example

The following code hides an ImagePicker instance, which is of type Picker and detaches its event handlers.

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

 See Also