Hi Team,
I would like to perform an operation on the change of a field in editable detail.
But the onchnage event doesn't trigger.
Step 1: Below is the editable detail, when the value in document field is changed an operation has to be performed (custom logic)
Step 2: Updated the below code in this schema UsrCourierCertDetail (Title: Detail schema: "Acceptance certificates")
attributes:{
"UsrDocument": {
dependencies: [{
columns: ["UsrDocument"], //field to trigger change event for
methodName: "onDocumentchange" //method to execute
}]
}
}
onDocumentchange : function(){
this.console.log("document chnged") ;
},
but, this Ondocumentchange() is not triggered when the value in document field (UsrDocument) is modified.
kindly guide me on this.
Regards,
Bhoobalan P.