Validates keyboard input.
Namespace: MindFusion.Common.UI
File: Picker.js
JavaScript Copy Code |
---|
function validateInput () |
The following code creates an ImagePicker with an initial list of 3 images and handles its valueChanging event, where it validates keyboard input:
JavaScript Copy Code |
---|
var imagePicker = u.ImagePicker(document.getElementById("image_picker")); imagePicker.valueChanging.addEventListener(handleValueChanging); function handleValueChanging(sender, args) |