Last week we upgraded our Forms from 10.4.1 to 10.4.5.282 and one of our forms that was making use of the following javascript didn't work as it did before the upgrade.
$(document).on("lookupcomplete", function (event) {
if(event.ruleId=="3354"){
LF.lookup.autoPopulate();
}
});
$(document).on("lookupcomplete", function (event) {
if(event.ruleId=="3357"){
LF.lookup.autoPopulate();
}
});
Is this function no longer supported?
I'm not a javascript engineer and we got this snippet from this post and form was working fine previous to the upgrade.
If I remove this javascript from the form, the form works but no longer allows me to select another value from a drop down after it has been autofilled, which I could before.