Hello!
I have a problem triggering the event at a many2one field in a popover from mrp.workorder
this is the field i put:
<div class="row"> <span class="col-6">Seleccione un Tambor</span> <span name="selected_pope_id" class="o_field_widget col-4 pe-2"> <Many2OneField t-props="tamborInfo" t-on-change="updateSelectedPope"/> </span> </div>
and this is the js/owl component:
get tamborInfo() { return { name: "selected_pope_id", record: this.props.record, }; }
this get the values for selected_pope_id, thats ok... but When i click in one of the registries, doesnt trigger.. never gets in the update o in the t-on-change and I dont know why, If somebody could help please!
thanks!