Gets or sets the index of the selected image.
Namespace: MindFusion.Common.UI
File: ImagePicker.js
SyntaxJavaScript
Copy Code
|
|---|
get imageIndex() {} |
Number. The index.
ExampleThe following code creates an ImagePicker with an initial list of 3 images and handles its valueChanging event where it checks the index of the selected image:
JavaScript
Copy Code
|
|---|
var u = MindFusion.Common.UI; var imagePicker = u.ImagePicker(document.getElementById("image_picker")); imagePicker.valueChanging.addEventListener(handleValueChanging); function handleValueChanging(sender, args) |
See Also