domain: client
language: javascript
class Field class
Identifies the item to which a field object belongs.
Check the value of the owner attribute to determine the item that uses the field object to represent one of its fields.
function calculate(item) {
}
function on_field_changed(field, lookup_item) {
if (field.field_name === 'taxrate') {
calculate(field.owner);
}
}