跳至內容
選單
此問題已被標幟
1 回覆
4267 瀏覽次數

Hello,

how to get the value of the text in the selected menu in the topbar menu item ? for eg when i click on sales i have sales, when i click on Events i have events

頭像
捨棄
最佳答案

     In the web/static/src/js/chrome.js File
    using the below code to read name

    menu_click: function(id, needaction) {
        if (!id) { return; }
        /* To Read Menu Name */
        var func = new instance.web.Model("ir.ui.menu").get_func("read");
            func(id,["name"]).then(function(res) {        
            var menu_name = res['name'];        
            alert(menu_name);
        /* End */        
        });
        /* Other Code */
    },
    
    Best way in custom module to override js code and get name

頭像
捨棄
相關帖文 回覆 瀏覽次數 活動
1
9月 15
9143
2
8月 15
5527
0
8月 15
3292
1
3月 15
635
0
3月 15
346