


Hi All,
I have a function which is written in AEM Form component's rule editor, I want to trigger this function based on some condition in JQuery.
How to trigger the function call?
Thanks,
Solved! Go to Solution.
Views
Replies
Total Likes
Get hold of the event, write a jquery for the event, and place the rule editor code inside the jquery.
This whole logic should be on form initialize or field initialize.
$("#xyzFieldID").click(function(){
field.value="test";
});
Get hold of the event, write a jquery for the event, and place the rule editor code inside the jquery.
This whole logic should be on form initialize or field initialize.
$("#xyzFieldID").click(function(){
field.value="test";
});