I am just checking to change the usermenu drop down on the right corner, but could not changed. I followed https://www.odoo.com/forum/help-1/question/how-to-customize-usermenu-on-upper-right-corner-107470, but no success at all.
Version: odoo11
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
I am just checking to change the usermenu drop down on the right corner, but could not changed. I followed https://www.odoo.com/forum/help-1/question/how-to-customize-usermenu-on-upper-right-corner-107470, but no success at all.
Version: odoo11
I think you can use these steps:
module_folder/static/src/xml/template.xml
'qweb': ['static/src/xml/template.xml'],
<?xml version="1.0" encoding="UTF-8"?> <templates id="my_menus_template_id" xml:space="preserve">
<t t-name="UserMenu.Actions">
<li class="logout"><a href="#" data-menu="logout">Log out</a></li>
</t>
</templates>
<li><a href="#" data-menu="documentation">Documentation</a></li>
<li><a href="#" data-menu="support">Support</a></li>
<li class="divider"/>
<li><a href="#" data-menu="settings">Preferences</a></li>
<li><a href="#" data-menu="account">My Odoo.com account</a></li>
<li><a href="#" data-menu="logout">Log out</a></li>
<?xml version="1.0" encoding="UTF-8"?> <templates id="my_menus_template_id" xml:space="preserve">
<t t-name="UserMenu.Actions">
<li class="logout"><a href="#" data-menu="logout">Log out</a></li>
<li><a href="#" data-menu="newmenu">New Menu</a></li>
</t>
</templates>
odoo.define('module_folder.ComplementMenu', function(require) {
"use strict"; var UserMenu = require('web.UserMenu'); var ComplementMenu = UserMenu.include({ _onMenuNewmenu: function () {
//...Here your code } }); return ComplementMenu; });
<?xml version="1.0" encoding="UTF-8"?> <odoo> <template id="assets_backend" name="tools assets" inherit_id="web.assets_backend"> <xpath expr="."> <script type="application/javascript" src="/module_folder/static/src/js/menu.js"/> </xpath> </template> </odoo>
data': [ 'views/menu_view.xml',],
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign upRelated Posts | Replies | Views | Activity | |
---|---|---|---|---|
|
2
Aug 23
|
1224 | ||
|
1
Jul 23
|
1269 | ||
|
1
Jul 23
|
6434 | ||
|
1
Dec 15
|
2906 | ||
|
0
Mar 15
|
2441 |