Hi,
I am writing H5 script to add an event callback function when ever the field value is changed but call back is not being called.
let testfield$ = ScriptUtil.FindChild(this.controller.ParentWindow, fieldname);
ScriptUtil.AddEventHandler(testfield$, "change", (event:any) => {
console.log("Event called",event)
})
I am not sure if there is something wrong with the code, I am calling following code in run method.
Thanks in advance