Skip to Content
Odoo Meniu
  • Autentificare
  • Try it free
  • Aplicații
    Finanțe
    • Contabilitate
    • Facturare
    • Cheltuieli
    • Spreadsheet (BI)
    • Documente
    • Semn
    Vânzări
    • CRM
    • Vânzări
    • POS Shop
    • POS Restaurant
    • Abonamente
    • Închiriere
    Site-uri web
    • Constructor de site-uri
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Lanț Aprovizionare
    • Inventar
    • Producție
    • PLM
    • Achiziție
    • Maintenance
    • Calitate
    Resurse Umane
    • Angajați
    • Recrutare
    • Time Off
    • Evaluări
    • Referințe
    • Flotă
    Marketing
    • Social Marketing
    • Marketing prin email
    • SMS Marketing
    • Evenimente
    • Automatizare marketing
    • Sondaje
    Servicii
    • Proiect
    • Foi de pontaj
    • Servicii de teren
    • Centru de asistență
    • Planificare
    • Programări
    Productivitate
    • Discuss
    • Aprobări
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Aplicații Terțe Odoo Studio Platforma Odoo Cloud
  • Industrii
    Retail
    • Book Store
    • Magazin de îmbrăcăminte
    • Magazin de Mobilă
    • Magazin alimentar
    • Magazin de materiale de construcții
    • Magazin de jucării
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Distribuitor de băuturi
    • Hotel
    Proprietate imobiliara
    • Real Estate Agency
    • Firmă de Arhitectură
    • Construcție
    • Estate Managament
    • Grădinărit
    • Asociația Proprietarilor de Proprietăți
    Consultanta
    • Firma de Contabilitate
    • Partener Odoo
    • Agenție de marketing
    • Law firm
    • Atragere de talente
    • Audit & Certification
    Producție
    • Textil
    • Metal
    • Mobilier
    • Mâncare
    • Brewery
    • Cadouri corporate
    Health & Fitness
    • Club Sportiv
    • Magazin de ochelari
    • Centru de Fitness
    • Wellness Practitioners
    • Farmacie
    • Salon de coafură
    Trades
    • Handyman
    • IT Hardware and Support
    • Asigurare socială de stat
    • Cizmar
    • Servicii de curățenie
    • HVAC Services
    Altele
    • Organizație nonprofit
    • Agenție de Mediu
    • Închiriere panouri publicitare
    • Fotografie
    • Închiriere biciclete
    • Asigurare socială
    Browse all Industries
  • Comunitate
    Învăță
    • Tutorials
    • Documentație
    • Certificări
    • Instruire
    • Blog
    • Podcast
    Empower Education
    • Program Educațional
    • Scale Up! Business Game
    • Visit Odoo
    Obține Software-ul
    • Descărcare
    • Compară Edițiile
    • Lansări
    Colaborați
    • Github
    • Forum
    • Evenimente
    • Translations
    • Devino Partener
    • Services for Partners
    • Înregistrează-ți Firma de Contabilitate
    Obține Servicii
    • Găsește un Partener
    • Găsiți un contabil
    • Meet an advisor
    • Servicii de Implementare
    • Referințe ale clienților
    • Suport
    • Actualizări
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obține un demo
  • Prețuri
  • Ajutor

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Contabilitate
  • Inventar
  • PoS
  • Proiect
  • MRP
All apps
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Suport

Menu dropdown_click outside to collapse

Abonare

Primiți o notificare când există activitate la acestă postare

Această întrebare a fost marcată
odooodoo11odoo11communityodoo11.0Odoo11
3 Răspunsuri
9763 Vizualizări
Imagine profil
Gulshan kumar krishnagiri
$(document).ready(function () {
$(document).click(function (event) {
var clickover = $(event.target);
var _opened = $(".navbar-top-collapse").hasClass("navbar-collapse navbar-top-collapse collapse in");
if (_opened === true && !clickover.hasClass("navbar-toggle collapsed")) {
$("button.navbar-toggle collapsed").click();
}
});
});



This seems not working for me. Any leads if possible.
0
Imagine profil
Abandonează
Imagine profil
faOtools
Cel mai bun răspuns

Hi, 

add a a logger to make sure that elements you search are found and they are what you search for:

console.log("clickover: ", clickover, "_opened: ", _opened);

My assumption is that it is not so: e.g. 'clickover' would ever hardly have the searched class, since event relates to a 'document', not your dropdown.

Finally, the issue you are trying to solve is quite controversial, you should be really cautious of extending outside Odoo standard js. Have a look here: https://stackoverflow.com/questions/152975/how-do-i-detect-a-click-outside-an-element. 

UPDATE

try this code:

    $(document).ready(function () {
        $(document).click(function (event) {
            event.stopPropagation();
            var thisButton = $(document).find('.navbar-collapse navbar-top-collapse collapse in');
            console.log("thisButton", thisButton);
            thisButton.removeClass("collapse");
        });
    });
in the last string put the class which is responsible for beeing expanded
0
Imagine profil
Abandonează
Imagine profil
Gulshan kumar krishnagiri
Autor Cel mai bun răspuns

Thank you. 

I used this logger and i get this error :

collapse_menu.js:13 Uncaught ReferenceError: clickover is not defined


Comment 2: 

I did this - Thanks.

Console: 

payment_form.js:459 DOM doesn't contain '.o_payment_form'

tour_manager.js:170 Tour Manager is ready.  running_tour=null

collapse_menu.js:9 clickover:  jQuery.fn.init [div.w-toggle-menu, context: div.w-toggle-menu]0: div.w-toggle-menucontext: div.w-toggle-menulength: 1__proto__: Object(0) _opened:  false

collapse_menu.js:20 clickover:  jQuery.fn.init [div.w-toggle-menu, context: div.w-toggle-menu]0: div.w-toggle-menucontext: div.w-toggle-menulength: 1__proto__: Object(0) _opened:  false

collapse_menu.js:32 clickover:  jQuery.fn.init [div.w-toggle-menu, context: div.w-toggle-menu]0: div.w-toggle-menucontext: div.w-toggle-menulength: 1__proto__: Object(0) _opened:  false


Do i need to do something else as well? Because the menu dropdown is not closing when i click outside. And the _opened: is always false.

0
Imagine profil
Abandonează
faOtools

you should add it after defining the var (before 'if'). clickover is definitely inside your method - 'var clickover ='

Gulshan kumar krishnagiri
Autor

payment_form.js:459 DOM doesn't contain '.o_payment_form'

tour_manager.js:170 Tour Manager is ready. running_tour=null

collapse_menu.js:9 clickover: jQuery.fn.init [div.w-toggle-menu, context: div.w-toggle-menu]0: div.w-toggle-menucontext: div.w-toggle-menulength: 1__proto__: Object(0) _opened: false

collapse_menu.js:20 clickover: jQuery.fn.init [div.w-toggle-menu, context: div.w-toggle-menu]0: div.w-toggle-menucontext: div.w-toggle-menulength: 1__proto__: Object(0) _opened: false

collapse_menu.js:32 clickover: jQuery.fn.init [div.w-toggle-menu, context: div.w-toggle-menu]0: div.w-toggle-menucontext: div.w-toggle-menulength: 1__proto__: Object(0) _opened: false

Do i need to do something else as well? Because the menu dropdown is not closing when i click outside. And the _opened: is always false.

Gulshan kumar krishnagiri
Autor

This is my .js file:

odoo.define('theme_wibas.collapseMenu', function (require) {

'use strict';

$(document).ready(function () {

$(document).click(function (event) {

var clickover = $(event.target);

var _opened = $(".navbar-top-collapse").hasClass("navbar-collapse navbar-top-collapse collapse in");

console.log("clickover: ", clickover, "_opened: ", _opened);

if (_opened === true && !clickover.hasClass("navbar-toggle collapsed")) {

$("button.navbar-toggle collapsed").click();

}

});

});

faOtools

It means that selector $(".navbar-top-collapse") ie either not found or doesn't have a searched class. Besides, I guess what you do in 'if' is not correct, since the second part would be always true. It is better to use removeClass which will check for class by itself. I updated my initial answer - try to use it.

Gulshan kumar krishnagiri
Autor

odoo.define('theme_wibas.collapseMenu', function (require) {

'use strict';

$(document).ready(function () {

$(document).click(function (event) {

event.stopPropagation();

var thisButton = $(document).find('.o_dropdown_toggler_btn');

console.log("thisButton", thisButton);

thisButton.removeClass(".navbar-toggle");

});

});

Doesn't work... :(

faOtools

var thisButton = $(document).find('.navbar-collapse navbar-top-collapse collapse in');

Gulshan kumar krishnagiri
Autor

$(document).ready(function () {

$(document).click(function (event) {

event.stopPropagation();

var thisButton = $(document).find('.navbar-collapse navbar-top-collapse collapse in');

console.log("thisButton", thisButton);

thisButton.removeClass(".navbar-toggle");

// thisButton.removeClass(".navbar-toggle collapsed");

});

});

Nope. Its still the same...

faOtools

and what is logged by console.log("thisButton", thisButton)?

Gulshan kumar krishnagiri
Autor

thisButton jQuery.fn.init [prevObject: jQuery.fn.init(1), context: document, selector: ".navbar-collapse navbar-top-collapse collapse in"]context: documentlength: 0prevObject: jQuery.fn.init [document, context: document]selector: ".navbar-collapse navbar-top-collapse collapse in"__proto__: Object(0)

faOtools

So, length of found items is zero. It means that no elements with the class navbar-collapse navbar-top-collapse collapse in are on the document. Double check that you have an element with such a class

Gulshan kumar krishnagiri
Autor

Ok will post all details:

1. When i click on the menu :

<button id="mainmenubutton" type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-top-collapse">

<div class="w-toggle-menu">Menü</div>

<div class="w-toggle-close">×</div>

<div class="w-toggle-hamburger">

<span class="icon-bar"></span>

<span class="icon-bar"></span>

<span class="icon-bar"></span>

</div>

</button>

2. the the dropdown list code:

<div class="navbar-collapse navbar-top-collapse collapse in" aria-expanded="true" style="">

<ul class="nav navbar-nav navbar-left" id="top_menu">

<li>

<a href="/unternehmen">

<span data-oe-model="website.menu" data-oe-id="19" data-oe-field="name" data-oe-type="char" data-oe-expression="submenu.name">(f) Unternehmen</span>

</a>

</li>

<li>

<a href="/digitalisierung">

<span data-oe-model="website.menu" data-oe-id="15" data-oe-field="name" data-oe-type="char" data-oe-expression="submenu.name">Digitalisierung</span>

</a>

</li>

<li>

<a href="/agile-organisation">

<span data-oe-model="website.menu" data-oe-id="7" data-oe-field="name" data-oe-type="char" data-oe-expression="submenu.name">Agile Organisation</span>

</a>

</li>

<li>

<a href="/scaled-agile">

<span data-oe-model="website.menu" data-oe-id="24" data-oe-field="name" data-oe-type="char" data-oe-expression="submenu.name">Scaled Agile</span>

</a>

</li>

<li>

<a href="/agile-methoden">

<span data-oe-model="website.menu" data-oe-id="22" data-oe-field="name" data-oe-type="char" data-oe-expression="submenu.name">Agile Methoden</span>

</a>

</li>

<li>

<a href="/beratung">

<span data-oe-model="website.menu" data-oe-id="11" data-oe-field="name" data-oe-type="char" data-oe-expression="submenu.name">Beratung</span>

</a>

</li>

<li>

<a href="/schulungen">

<span data-oe-model="website.menu" data-oe-id="9" data-oe-field="name" data-oe-type="char" data-oe-expression="submenu.name">Schulungen</span>

</a>

</li>

<li>

<a href="/veranstaltungen">

<span data-oe-model="website.menu" data-oe-id="4" data-oe-field="name" data-oe-type="char" data-oe-expression="submenu.name">Veranstaltungen</span>

</a>

</li>

<li>

<a href="/publikationen">

<span data-oe-model="website.menu" data-oe-id="5" data-oe-field="name" data-oe-type="char" data-oe-expression="submenu.name">Publikationen</span>

</a>

</li>

<li>

<a href="/topicpage">

<span data-oe-model="website.menu" data-oe-id="38" data-oe-field="name" data-oe-type="char" data-oe-expression="submenu.name">Topicpage</span>

</a>

</li>

<li>

<a href="/scaled-agile-1">

<span data-oe-model="website.menu" data-oe-id="37" data-oe-field="name" data-oe-type="char" data-oe-expression="submenu.name">Scaled-Agile</span>

</a>

</li>

<li>

<a href="/lotse">

<span data-oe-model="website.menu" data-oe-id="39" data-oe-field="name" data-oe-type="char" data-oe-expression="submenu.name">Ihr Lotse</span>

</a>

</li>

<li>

<a href="/gulshan">

<span data-oe-model="website.menu" data-oe-id="40" data-oe-field="name" data-oe-type="char" data-oe-expression="submenu.name">gulshan</span>

</a>

</li>

<li>

<a href="/test">

<span data-oe-model="website.menu" data-oe-id="41" data-oe-field="name" data-oe-type="char" data-oe-expression="submenu.name">test</span>

</a>

</li>

<li>

<a href="/test-1">

<span data-oe-model="website.menu" data-oe-id="42" data-oe-field="name" data-oe-type="char" data-oe-expression="submenu.name">test</span>

</a>

</li>

<li>

<a href="/gulshan-1">

<span data-oe-model="website.menu" data-oe-id="44" data-oe-field="name" data-oe-type="char" data-oe-expression="submenu.name">gulshan</span>

</a>

</li>

<li class="divider"></li>

<li data-oe-model="ir.ui.view" data-oe-id="1327" data-oe-field="arch" data-oe-xpath="/data/xpath[4]/div[1]/div[2]/div[1]/ul[1]/li[2]">

<form class="navbar-form navbar-left" role="search">

<div class="inner-addon right-addon">

<i class="fa fa-search"></i>

<input type="text" class="form-control" placeholder="Search">

</div>

<button type="submit" class="btn btn-default hidden">Submit</button>

</form>

</li>

<li class="lang-select">

<a class="js_change_lang" href="/en_US/?debug=assets" data-lang="en_US">

switch to english

</a>

</li>

</ul>

</div>

Gulshan kumar krishnagiri
Autor

Any help? I tried out every possible thing.

Gulshan kumar krishnagiri
Autor

Hey Guys - The solution is this. This worked fine.

$(document).click(function (event) {

var clickover = $(event.target);

var $navbar = $(".navbar-top-collapse");

var _opened = $navbar.hasClass("in");

if (_opened === true && !clickover.hasClass("navbar-toggle collapsed")) {

$navbar.collapse('hide');

}

});

Imagine profil
faOtools
Cel mai bun răspuns

Hi, 

add a a logger to make sure that elements you search are found and they are what you search for:

console.log("clickover: ", clickover, "_opened: ", _opened);

My assumption is that it is not so: e.g. 'clickover' would ever hardly have the searched class, since event relates to a 'document', not your dropdown.

Finally, the issue you are trying to solve is quite controversial, you should be really cautious of extending outside Odoo standard js. Have a look here: https://stackoverflow.com/questions/152975/how-do-i-detect-a-click-outside-an-element. 

0
Imagine profil
Abandonează
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Înscrie-te
Related Posts Răspunsuri Vizualizări Activitate
Odoo 11 Hide EDIT & DELETE Rezolvat
odoo odoo11 odoo11community odoo11.0
Imagine profil
Imagine profil
1
mar. 21
3953
Odoo Date Total In Version 11 Rezolvat
odoo11 odoo11community odoo11.0 Odoo11
Imagine profil
Imagine profil
Imagine profil
3
mar. 19
4200
how to pass element tree to other function TypeError: 'ElementTree' object is not iterable - - -
odoo11 odoo12.0 odoo11community odoo11.0 Odoo11
Imagine profil
Imagine profil
1
mai 20
7513
Hide field using One2many domain Rezolvat
domain odoo11 odoo11community odoo11.0 Odoo11
Imagine profil
Imagine profil
1
ian. 19
6784
issue (Uncaught TypeError: Cannot read property 'toggleClass' of undefined) with odoo in latest update of chrome
odoo11 odoov11 odoo11community odoo11.0 Odoo11
Imagine profil
0
nov. 18
6296
Comunitate
  • Tutorials
  • Documentație
  • Forum
Open Source
  • Descărcare
  • Github
  • Runbot
  • Translations
Servicii
  • Hosting Odoo.sh
  • Suport
  • Actualizare
  • Custom Developments
  • Educație
  • Găsiți un contabil
  • Găsește un Partener
  • Devino Partener
Despre Noi
  • Compania noastră
  • Active de marcă
  • Contactați-ne
  • Locuri de muncă
  • Evenimente
  • Podcast
  • Blog
  • Clienți
  • Aspecte juridice • Confidențialitate
  • Securitate
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo este o suită de aplicații de afaceri open source care acoperă toate nevoile companiei dvs.: CRM, comerț electronic, contabilitate, inventar, punct de vânzare, management de proiect etc.

Propunerea de valoare unică a Odoo este să fie în același timp foarte ușor de utilizat și complet integrat.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now