Initializes a new instance of the ValueChangedEventArgs class.
Namespace: MindFusion.Common.UI
File: EventArgs.js
JavaScript Copy Code |
---|
function ValueChangedEventArgs (oldValue, newValue) |
Object. Gets the value before the change.
Object. The new value.
The following code handles the valueChanged event of an ImagePicker:
JavaScript Copy Code |
---|
var u = MindFusion.Common.UI; var imagePicker = u.ImagePicker(document.getElementById("image_picker")); function handleValueChanged(sender, args) |