this.do_notify("Success", "Your Message has been send successfully...");
I can see the following error:
Uncaught Javascript Error > this.do_notify is not a function
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
this.do_notify("Success", "Your Message has been send successfully...");
I can see the following error:
Uncaught Javascript Error > this.do_notify is not a function
Hi,
Instead of using this.do_notify in odoo 15, we should use this.displayNotification.
So try changing the code to
this.displayNotification({
type: 'warning',
title: _t('Success'),
message: "Your Message has been send successfully...",
sticky: true
});
Regards
Thanks
but when used displayNotification function
i getting this error
TypeError: cannot read properties of undefined ( reading 'displayNotification)
| 관련 게시물 | 답글 | 화면 | 활동 | |
|---|---|---|---|---|
|
1
6월 23
|
2768 | |||
|
1
5월 23
|
2707 | |||
|
0
5월 20
|
3769 | |||
|
2
1월 20
|
9603 | |||
|
1
3월 15
|
7045 |
1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.