コンテンツへスキップ
メニュー
この質問にフラグが付けられました
1 返信
2844 ビュー

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?

アバター
破棄
最善の回答

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

アバター
破棄
関連投稿 返信 ビュー 活動
1
4月 24
2119
0
1月 24
1690
1
9月 23
3118
2
4月 23
5293
2
1月 23
7771