Search
DropDown Constructor
See Also
 






Initializes a new instance of the DropDown class.

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

 Syntax

JavaScript  Copy Code

function DropDown (parent)

 Parameters

parent

Picker. The parent Picker control.

 Example

The following code creates a new DropDown using an ImagePicker:

JavaScript  Copy Code
var imagePicker = u.ImagePicker(document.getElementById("image_picker"));
var dropDown = new u.DropDown(imagePicker);

 See Also