Gets or sets the offset of the dropdown.
Namespace: MindFusion.Common.UI
File: Picker.js
JavaScript Copy Code |
---|
get dropdownOffset() {} |
Point. A Point instance representing the horizontal and vertical offset.
The following code creates an ImagePicker with an initial list of 3 images and handles its valueChanging event. The image picker does not allow empty values and its buttons are rendered inside the input element:
JavaScript Copy Code |
---|
var u = MindFusion.Common.UI; var imagePicker = u.ImagePicker(document.getElementById("image_picker")); imagePicker.valueChanging.addEventListener(handleValueChanging); function handleValueChanging(sender, args) |