Dynamic views
View elements also support a few dynamic attributes that allow views to dynamically change their appearance or behavior depending on field values. We may have on change events, able change values on other fields while editing data on a form, or have fields be mandatory or visible only when certain conditions are met.
On change events
The on change mechanism allows us to change values in other form fields when a particular field is changed. For example, the on change on a Product field can set the Price field to a default value whenever the product is changed.
In older versions, the on change events were defined at the view level, but since Version 8.0 they have been defined directly on the Model layer, without the need for any specific markup on the views. This is done by creating methods to perform the calculations, and by using @api.onchange('field1', 'field2')
to bind it to fields. The on change methods are discussed in more detail in Chapter 6, The ORM API – Handling Application...