Skip to Content
Odoo Menú
  • Registra entrada
  • Prova-ho gratis
  • Aplicacions
    Finances
    • Comptabilitat
    • Facturació
    • Despeses
    • Full de càlcul (IA)
    • Documents
    • Signatura
    Vendes
    • CRM
    • Vendes
    • Punt de venda per a botigues
    • Punt de venda per a restaurants
    • Subscripcions
    • Lloguer
    Imatges de llocs web
    • Creació de llocs web
    • Comerç electrònic
    • Blog
    • Fòrum
    • Xat en directe
    • Aprenentatge en línia
    Cadena de subministrament
    • Inventari
    • Fabricació
    • PLM
    • Compres
    • Manteniment
    • Qualitat
    Recursos humans
    • Empleats
    • Reclutament
    • Absències
    • Avaluacions
    • Recomanacions
    • Flota
    Màrqueting
    • Màrqueting Social
    • Màrqueting per correu electrònic
    • Màrqueting per SMS
    • Esdeveniments
    • Automatització del màrqueting
    • Enquestes
    Serveis
    • Projectes
    • Fulls d'hores
    • Servei de camp
    • Suport
    • Planificació
    • Cites
    Productivitat
    • Converses
    • Validacions
    • IoT
    • VoIP
    • Coneixements
    • WhatsApp
    Aplicacions de tercers Odoo Studio Plataforma d'Odoo al núvol
  • Sectors
    Comerç al detall
    • Llibreria
    • Botiga de roba
    • Botiga de mobles
    • Botiga d'ultramarins
    • Ferreteria
    • Botiga de joguines
    Food & Hospitality
    • Bar i pub
    • Restaurant
    • Menjar ràpid
    • Guest House
    • Distribuïdor de begudes
    • Hotel
    Immobiliari
    • Agència immobiliària
    • Estudi d'arquitectura
    • Construcció
    • Gestió immobiliària
    • Jardineria
    • Associació de propietaris de béns immobles
    Consultoria
    • Empresa comptable
    • Partner d'Odoo
    • Agència de màrqueting
    • Bufet d'advocats
    • Captació de talent
    • Auditoria i certificació
    Fabricació
    • Textile
    • Metal
    • Mobles
    • Menjar
    • Brewery
    • Regals corporatius
    Salut i fitness
    • Club d'esport
    • Òptica
    • Centre de fitness
    • Especialistes en benestar
    • Farmàcia
    • Perruqueria
    Trades
    • Servei de manteniment
    • Hardware i suport informàtic
    • Sistemes d'energia solar
    • Shoe Maker
    • Serveis de neteja
    • Instal·lacions HVAC
    Altres
    • Nonprofit Organization
    • Agència del medi ambient
    • Lloguer de panells publicitaris
    • Fotografia
    • Lloguer de bicicletes
    • Distribuïdors de programari
    Browse all Industries
  • Comunitat
    Aprèn
    • Tutorials
    • Documentació
    • Certificacions
    • Formació
    • Blog
    • Pòdcast
    Potenciar l'educació
    • Programa educatiu
    • Scale-Up! El joc empresarial
    • Visita Odoo
    Obtindre el programari
    • Descarregar
    • Comparar edicions
    • Novetats de les versions
    Col·laborar
    • GitHub
    • Fòrum
    • Esdeveniments
    • Traduccions
    • Converteix-te en partner
    • Services for Partners
    • Registra la teva empresa comptable
    Obtindre els serveis
    • Troba un partner
    • Troba un comptable
    • Contacta amb un expert
    • Serveis d'implementació
    • Referències del client
    • Suport
    • Actualitzacions
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Programar una demo
  • Preus
  • Ajuda

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

  • CRM
  • e-Commerce
  • Comptabilitat
  • Inventari
  • PoS
  • Projectes
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
Ajuda

Menu dropdown_click outside to collapse

Subscriure's

Get notified when there's activity on this post

This question has been flagged
odooodoo11odoo11communityodoo11.0Odoo11
3 Respostes
9753 Vistes
Avatar
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
Avatar
Descartar
Avatar
faOtools
Best Answer

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
Avatar
Descartar
Avatar
Gulshan kumar krishnagiri
Autor Best Answer

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
Avatar
Descartar
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');

}

});

Avatar
faOtools
Best Answer

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
Avatar
Descartar
Enjoying the discussion? Don't just read, join in!

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

Registrar-se
Related Posts Respostes Vistes Activitat
Odoo 11 Hide EDIT & DELETE Solved
odoo odoo11 odoo11community odoo11.0
Avatar
Avatar
1
de març 21
3933
Odoo Date Total In Version 11 Solved
odoo11 odoo11community odoo11.0 Odoo11
Avatar
Avatar
Avatar
3
de març 19
4186
how to pass element tree to other function TypeError: 'ElementTree' object is not iterable - - -
odoo11 odoo12.0 odoo11community odoo11.0 Odoo11
Avatar
Avatar
1
de maig 20
7491
Hide field using One2many domain Solved
domain odoo11 odoo11community odoo11.0 Odoo11
Avatar
Avatar
1
de gen. 19
6773
issue (Uncaught TypeError: Cannot read property 'toggleClass' of undefined) with odoo in latest update of chrome
odoo11 odoov11 odoo11community odoo11.0 Odoo11
Avatar
0
de nov. 18
6289
Community
  • Tutorials
  • Documentació
  • Fòrum
Codi obert
  • Descarregar
  • GitHub
  • Runbot
  • Traduccions
Serveis
  • Allotjament a Odoo.sh
  • Suport
  • Actualització
  • Desenvolupaments personalitzats
  • Educació
  • Troba un comptable
  • Troba un partner
  • Converteix-te en partner
Sobre nosaltres
  • La nostra empresa
  • Actius de marca
  • Contacta amb nosaltres
  • Llocs de treball
  • Esdeveniments
  • Pòdcast
  • Blog
  • Clients
  • Informació legal • Privacitat
  • Seguretat
الْعَرَبيّة 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 és un conjunt d'aplicacions empresarials de codi obert que cobreix totes les necessitats de la teva empresa: CRM, comerç electrònic, comptabilitat, inventari, punt de venda, gestió de projectes, etc.

La proposta única de valor d'Odoo és ser molt fàcil d'utilitzar i estar totalment integrat, ambdues alhora.

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