Is it possible to change the display order of notifications and emails in the Discuss app? From the most recent to the oldest
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Accounting
- Inventory
- PoS
- Project
- MRP
This question has been flagged
1
Reply
2566
Views
Hi, you have to do the super of the 'mail.ChatThread' init (it's in the MAIL form), look at this example:
init: function (parent, options) {
this.options = _.defaults(options || {}, {
display_order: ORDER.DESC,
})
this._super(parent,options);
}
Now I'll try it thanks
Works!! Thank you....
Enjoying the discussion? Don't just read, join in!
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign upRelated Posts | Replies | Views | Activity | |
---|---|---|---|---|
|
0
Oct 21
|
4358 | ||
|
0
Nov 20
|
2619 | ||
|
1
May 25
|
926 | ||
|
2
May 25
|
980 | ||
|
0
Apr 25
|
924 |