diff --git a/web_advanced_search_x2x/static/src/js/web_advanced_search_x2x.js b/web_advanced_search_x2x/static/src/js/web_advanced_search_x2x.js index 36937962..84d2ff37 100644 --- a/web_advanced_search_x2x/static/src/js/web_advanced_search_x2x.js +++ b/web_advanced_search_x2x/static/src/js/web_advanced_search_x2x.js @@ -36,6 +36,10 @@ odoo.define('web_advanced_search_x2x.search_filters', function (require) { this.operators.push({ 'value': 'domain', 'text': core._lt('is in selection'), }); + // Avoid hiding filter when using special widgets + this.events["click"] = function (event) { + event.stopPropagation(); + } return this._super.apply(this, arguments); },