How do I edit a sub menu item so that, when clicked, it opens in another window, or tab?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Accounting
- Inventory
- PoS
- Project management
- MRP
This question has been flagged
Hi Bill Berzins,
It is possible using just simple one line.
try this, accept the answer if helpfull..
step-1: create submenu
<menuitem name="submenu_name_to-display"
id="submenu_unique_id"
parent="submenu_parent_id"
action="action_id" />
step-2: define action
<record model="ir.actions.act_window" id="action_id">
<field name="name">Name to display</field>
<field name="target">new</field>
</record>
Enjoying the discussion? Don't just read, join in!
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign up