Hello,
I would like to expand the default number of listview items from 1-80 to 1-500 for all users.
Can anyone help?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
Hello,
I would like to expand the default number of listview items from 1-80 to 1-500 for all users.
Can anyone help?
You would need to increase the "Limit" value on all "Window Actions" (ir.actions.act_window).
The easiest way to do this in a batch is with a PostgreSQL command, but I'm not sure if that is available to you.
If it is, just run:
UPDATE ir_actions_act_window SET limit = 500 WHERE limit = 80;
If you don't have the ability to run a database command, you may have to alter each record manually by doing these steps:
Activate Odoo Developer Mode (https://www.odoo.com/slides/slide/debug-like-a-pro-the-developer-mode-453)
Go to Settings > Technical > Actions > Window Actions
Add custom filter: "Limit = 80"
Update each record manually
You may be able to create and run a Server Action to do this for you, but I am not familiar enough with them to suggest a solution in that way.
Good luck!
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign up