onChange

The event occurs when a control content is changed. You can use app.isLoadingRecord if you need to know if a record is loading and that is the reason for the change event.

   console.log("Change detected");
   if(app.isLoadingRecord){
      console.log("The app is displaying a record and that triggered the event");
   }

Last updated