| Availability |
Odoo Online
Odoo.sh
On Premise
|
| Lines of code | 671 |
| Technical Name |
x2many_search_widget |
| License | OPL-1 |
| Website | https://www.linkedin.com/in/neftalimich |
| Versions | 16.0 17.0 18.0 19.0 |
| Availability |
Odoo Online
Odoo.sh
On Premise
|
| Lines of code | 671 |
| Technical Name |
x2many_search_widget |
| License | OPL-1 |
| Website | https://www.linkedin.com/in/neftalimich |
| Versions | 16.0 17.0 18.0 19.0 |
Search Widget for X2Many Fields
Works with the native SearchBar
Set multiple filters for your x2many fields.
This widget provides an enhanced search experience for One2many and Many2many fields by adding a searchbar that closely matches Odoo's native look and behavior.
Quick performance, lightweight and easy to integrate into existing views.
Only perform a backend query when it is needed.
Example
Example 1: Search One2many Skill Lines by skill name, level, date, title, percentage and in progress.
See it in action:
*Next Improvements: record pagination optimizations.
X2Many Search Widget
This document describes the configuration and usage of the X2Many search widget.
Configuration
You can enable the search bar on X2Many fields by setting the show_searchbar attribute.
Examples:
<field name="your_field_name" widget="one2many" show_searchbar="1"/> <field name="your_field_name" widget="many2many" show_searchbar="1"/> <field name="your_field_name" widget="sol_o2m" show_searchbar="1"/>
Supported widgets and manifest dependencies:
- one2many - Dependencies: ['base', 'web']
- section_and_note_one2many - Dependencies: ['base', 'web', 'account']
- product_label_section_and_note_field_o2m - Dependencies: ['base', 'web', 'account']
- sol_o2m - Dependencies: ['base', 'web', 'account', 'sale']
- You can add new ones by editing x2manyFieldComponents variable in x2many_patched.js file.
Selecting Specific Fields (Optional)
By default, the widget searches on all visible columns. You can restrict or customize searchable fields using the search_fields attribute.
Examples:
<field name="skill_ids" widget="one2many" show_searchbar="1" search_fields="skill_id,title"/> <field name="skill_ids" widget="one2many" show_searchbar="1" search_fields="*columns,-skill_date"/> <field name="order_lines" widget="sol_o2m" show_searchbar="1" search_fields="product_id,product_uom_qty"/>
Notes:
- *columns is a special keyword that includes all visible columns in the search.
Limitations
- When the model is reloaded, such as when it is discarded, the sorting is lost even though the header indicator is still visible..
Changelog
[2026-02-12] - Release 19.0.1.0.6
- Sorting bug fixed.
- Sort and Filter optimized.
[2026-02-11] - Release 19.0.1.0.5
- Pager bug fixed.
[2026-02-10] - Release 19.0.1.0.4
- SearchBar default and favorites.
[2026-02-09] - Release 19.0.1.0.3
- Kanban mode fixed.
[2026-02-08] - Release 19.0.1.0.2
- Widget Many2many support.
- Field widget many2many_tags support.
- Nested searching using backend.
[2026-02-07] - Release 19.0.1.0.1
- Access the backend to fetch sub-options only when necessary.
[2026-02-05] - Release 19.0.1.0.0
- Widget fully reworked.
- Basic functionality implemented.
Odoo Proprietary License v1.0 This software and associated files (the "Software") may only be used (executed, modified, executed after modifications) if you have purchased a valid license from the authors, typically via Odoo Apps, or if you have received a written agreement from the authors of the Software (see the COPYRIGHT file). You may develop Odoo modules that use the Software as a library (typically by depending on it, importing it and using its resources), but without copying any source code or material from the Software. You may distribute those modules under the license of your choice, provided that this license is compatible with the terms of the Odoo Proprietary License (For example: LGPL, MIT, or proprietary licenses similar to this one). It is forbidden to publish, distribute, sublicense, or sell copies of the Software or modified copies of the Software. The above copyright notice and this permission notice must be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Please log in to comment on this module