PR file code FieldChange event seems to be working but giving some errors in console.
below code seems to be working but after execution, i see some other errors showing up in console.
******************************************************* Code *****
this.GetPM().AttachPMBinding("FieldChange", OnFieldChange, { sequence : true, scope: this});
function OnFieldChange(control, field_value){
console.log("Control Name: "+control.GetName()+" : "+field_value);
//returnStructure ["CancelOperation"] = true;
return true;
};
*********************Error ******************
Uncaught TypeError: Cannot read property 'keyCode' of undefinedSiebelAppFacade.PhysicalRenderer.ac.HandleKeyEvents
@ phyrenderer.js?_scb=8.2.2.4_SIA_[23030]_ENU:44(anonymous function)
@ phyrenderer.js?_scb=8.2.2.4_SIA_[23030]_ENU:44jQuery.event.dispatch
@ jquery.js?_scb=8.2.2.4_SIA_[23030]_ENU:3074elemData.handle @ jquery.js?_scb=8.2.2.4_SIA_[23030]_ENU:2750
srformappletpr.js?_scb=8.2.2.4_SIA_[23030]_ENU:28
Control Name: Abstract : testrdft
can someone help me with this error?