Search code examples
frontendodooodoo-15

How to implement a navigation panel in tree view in Odoo?


I want to implement a side navigation panel like the one in the Chart of Accounts view in Odoo

enter image description here

I can't find any documentation for this feature, how to implement it?


Solution

  • This is the searchpanel . By default, it is enabled on the the list view.

    To implement it to any tree view, you have just to define the searchpanel in the search view.

    For chart of accounts, they used the following:

    <searchpanel class="account_root">
        <field name="root_id" icon="fa-filter" limit="0"/>
    </searchpanel>