I have a link field in an entity.
I want to change on the fly the value of another field of my entity when i change the value in the link.
I tried to add an onchange event in the field view link.js :
this.listenTo(this, 'change', function (model) {
...
}, this);
but I don't know how to refer to the other field.
How can I do that ?
I want to change on the fly the value of another field of my entity when i change the value in the link.
I tried to add an onchange event in the field view link.js :
this.listenTo(this, 'change', function (model) {
...
}, this);
but I don't know how to refer to the other field.
How can I do that ?
Comment