Přejít na obsah
Menu
You need to be registered to interact with the community.
This question has been flagged
1 Odpovědět
2868 Zobrazení

Hi,
how can I set event listener (from javascript) for change on Many2one field? Field is showed like select (but in HTML is text input field). Listener works if I write in field but if I change option by selection from list, no event is fired. I need it from javascript becouse I want change select options in other field. Or it's posible from python?

Avatar
Zrušit
Nejlepší odpověď

Hi,

There is already a function called "onSelect" in Many2XAutocomplete component so you can use that by patching it.

/** @odoo-module **/
import { Many2XAutocomplete } from "@web/views/fields/relational_utils";

import { patch } from "@web/core/utils/patch";

patch(Many2XAutocomplete.prototype, "file_path or something unique", {
onSelect(option, params = {}){
// your code
this._super.apply(this, arguments);
}
})

Regards

Avatar
Zrušit
Related Posts Odpovědi Zobrazení Aktivita
1
dub 24
2126
0
led 24
1700
1
zář 23
3129
2
dub 23
5305
2
led 23
7782