After upgrading from DFFS v4.4.3.45 (SPJS-Lookup v 1.1.11) to DFFS v4.3.55 (SPJS-Lookup v 1.1.12), the Change rule for a field configured with spjs.lookup.init stopped firing. There were no errors in the browser console. Setting the rule to debug did show the rule trigger on load but not on change. Reverting back to DFFS v4.4.3.45 fixed the issue.
Here is the code we are using to configure the drop down list:
spjs.lookup.init({
"fieldToConvertToDropdown":[fieldName],
"listName":"Role",
"listBaseUrl":"/intranet/hr",
"optTextFieldInternalName":"Title",
"sortFieldName":"Title",
"filterObj":{
"on":false,
"folder":"",
"CAML":null,
"fin":"",
"isLookup":false,
"operator":"Neq",
"filterVal":"1"
},
"dropDownDefaultvalue":"...",
"addYouOwnValue":{
"on":false,
"linkText":"Write your own value"
},
"addToExternalList":{
"on":false,
"customFunction":null,
"linkText":"Add new item",
"saveNewItemText":"Save new item"
},
"debug":false
});