Hello,
How can we handle onchange JS event for our field:
I am using:
var ObsPlacentaWeightColor = FieldChar.extend({
_render: function () {
this._super.apply(this, arguments);
if (this.value) {
var value_arr = this.value;
if (value_arr < 300 || value_arr > 500) {
this.$el.css('color', 'red');
}
}
},
});
But it is working on form saving, How can we handle this on onchange of our field.
Thanks.