We just upgrade to LF 11.0.2311.50564 from version 10.xx, and I'm running into a wall with a simple sample code for onFieldBlur/onFiledChange event. Console display 'on blur' and 'on change' text as expected, but nothing is displayed for fieldId 2 and 4.Any suggestion is appreciated.
==============================
LFForm.onFieldBlur(function(){
console.log('on blur');
LLForm.setFieldValues({fieldId:2},"hello");
LLForm.setFieldValues({fieldId:4}, "there");
}, {fieldId: 3});
LFForm.onFieldChange(function(){
console.log('on change');
}, {fieldId: 3});
Chrome debugger: