Hi community,
is there a (simple) way to raise a javacript warning message on onchange event.? Basically the same which is already raised when a mandatory field is not filled. Is there any existing module where this function works?
Thanks for help!
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
Hi community,
is there a (simple) way to raise a javacript warning message on onchange event.? Basically the same which is already raised when a mandatory field is not filled. Is there any existing module where this function works?
Thanks for help!
In a on change, you can raise a warning or/and values...
return {
'warning': {
'title': _('Title'),
'message': _('Your message'),
},
'value': values,
}
From doc:
Be careful not to use @api.one in that case as it will mangle the dictionary (put it in a list, which is not supported by the web client).
Tạo tài khoản ngay hôm nay để tận hưởng các tính năng độc đáo và tham gia cộng đồng tuyệt vời của chúng tôi!
Đăng kýBài viết liên quan | Trả lời | Lượt xem | Hoạt động | |
---|---|---|---|---|
|
0
thg 1 25
|
605 | ||
|
4
thg 7 24
|
15284 | ||
|
1
thg 7 22
|
2607 | ||
|
0
thg 3 15
|
6144 | ||
|
2
thg 7 19
|
4301 |
Thanks, Jérémy, for your answer but this is actually not what i meant. I would like to raise a message in the right corner, precisely in the same way as the message that popups when mandatory field is not filled.