Skip to Content
Meniu
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
Această întrebare a fost marcată
1 Răspunde
1588 Vizualizări

How do I change the url ( onclick ) for Documentation, Support , Shortcuts when I click on the profile Icon of the user.


https://ibb.co/S7Fr78y

Imagine profil
Abandonează
Cel mai bun răspuns
odoo.define('module_name.UserMenu', function (require) {
"use strict";
var UserMenu = require('web.UserMenu');
var support_url = 'https://www.xyz.com';
var account_url = 'https://www.xyz.cn';
var documentation_url = 'https://www.xyz.com';

UserMenu.include({
_onMenuAccount: function () {
window.open(account_url, '_blank');
},
_onMenuDocumentation: function () {
window.open(documentation_url, '_blank');
},
_onMenuSupport: function () {
window.open(support_url, '_blank');
},
})});

Thanks & Regards,



CandidRoot Solutions Pvt. Ltd.

Mobile: (+91) 8849036209
Email: info@candidroot.com
Skype: live:candidroot
Web: https://www.candidroot.com
Address: 1229-1230, Iconic Shyamal, Near Shyamal Cross Road, Ahmedabad, Gujarat 380015
    

Imagine profil
Abandonează
Autor

Thank you.

Related Posts Răspunsuri Vizualizări Activitate
0
aug. 25
150
1
aug. 25
2101
1
iul. 25
2590
2
iul. 25
8026
2
iul. 25
4479