If I change the value of an input element in a form programmatically, i.e.
form.setItemValue(“inputBox”,“Hello World!”);
is there anyway to have this trigger the
forms “onChange” event?
If I change the value of an input element in a form programmatically, i.e.
form.setItemValue(“inputBox”,“Hello World!”);
is there anyway to have this trigger the
forms “onChange” event?
You need the next:
myForm.callEvent("onChange", [param1, param2, ...])