Skip to Content
Odoo Menu
  • Sign in
  • Try it free
  • Apps
    Finance
    • Accounting
    • Invoicing
    • Expenses
    • Spreadsheet (BI)
    • Documents
    • Sign
    Sales
    • CRM
    • Sales
    • POS Shop
    • POS Restaurant
    • Subscriptions
    • Rental
    Websites
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Supply Chain
    • Inventory
    • Manufacturing
    • PLM
    • Purchase
    • Maintenance
    • Quality
    Human Resources
    • Employees
    • Recruitment
    • Time Off
    • Appraisals
    • Referrals
    • Fleet
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Events
    • Marketing Automation
    • Surveys
    Services
    • Project
    • Timesheets
    • Field Service
    • Helpdesk
    • Planning
    • Appointments
    Productivity
    • Discuss
    • Approvals
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industries
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage Distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Estate Management
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Manufacturing
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Community
    Learn
    • Tutorials
    • Documentation
    • Certifications
    • Training
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Download
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Events
    • Translations
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Customer References
    • Support
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Pricing
  • Help

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

  • CRM
  • e-Commerce
  • Accounting
  • Inventory
  • PoS
  • Project
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
Help

Menu dropdown_click outside to collapse

Subscribe

Get notified when there's activity on this post

This question has been flagged
odooodoo11odoo11communityodoo11.0Odoo11
3 Replies
9860 Views
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
Discard
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
Discard
Avatar
Gulshan kumar krishnagiri
Author 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
Discard
faOtools

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

Gulshan kumar krishnagiri
Author

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
Author

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
Author

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
Author

$(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
Author

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
Author

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
Author

Any help? I tried out every possible thing.

Gulshan kumar krishnagiri
Author

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

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

Sign up
Related Posts Replies Views Activity
Odoo 11 Hide EDIT & DELETE Solved
odoo odoo11 odoo11community odoo11.0
Avatar
Avatar
1
Mar 21
4030
Odoo Date Total In Version 11 Solved
odoo11 odoo11community odoo11.0 Odoo11
Avatar
Avatar
Avatar
3
Mar 19
4325
how to pass element tree to other function TypeError: 'ElementTree' object is not iterable - - -
odoo11 odoo12.0 odoo11community odoo11.0 Odoo11
Avatar
Avatar
1
May 20
7599
Hide field using One2many domain Solved
domain odoo11 odoo11community odoo11.0 Odoo11
Avatar
Avatar
1
Jan 19
6881
issue (Uncaught TypeError: Cannot read property 'toggleClass' of undefined) with odoo in latest update of chrome
odoo11 odoov11 odoo11community odoo11.0 Odoo11
Avatar
0
Nov 18
6374
Community
  • Tutorials
  • Documentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Translations
Services
  • Odoo.sh Hosting
  • Support
  • Upgrade
  • Custom Developments
  • Education
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Brand Assets
  • Contact us
  • Jobs
  • Events
  • Podcast
  • Blog
  • Customers
  • Legal • Privacy
  • Security
الْعَرَبيّة 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 is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

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