Hello All,
In my process flow I am passing values from FORM A to FORM B. Form B has some fields like dropdown or checkboxes which are associated with some events.
When I pass the values from form A to form B, only the values will be passed to B by default, but the corresponding events wont be triggered. Some of the form element's visibility is displayed on the basis of values of items like dropdown. when it gets just the value, the value will be displayed but the corresponding elements will be visible which should have been invisible.
Is there any way that I can trigger the events of items in form B when it gets values from form A.
Thanks in advance
Deepak
Here's what I would like to do:
var f = this.getField("checkBoxField");
f.onMouseUp(); // But there's no such function
How to programmatically trigger MouseUp event on a checkbox field?
Thank you.