This module allows to add some selected filters as buttons in the header
control panel.
This developement is aimed to ease the filter access for touch screens
users.
To show a filter in the header of the views, it should have the a
context attribute with the key shown_in_panel.
<filter
string="My filter"
name="my_filter"
domain="[('active', '!=', False)]"
context="{'shown_in_panel': True}"
>
This will show the filter in the header with its name. You can customize
the button adding an icon or with a custom name passing an object to
that key:
{'shown_in_panel': {'icon': 'fa-thumbs-up', 'name': 'Ok'}}
You might be interested in leaving just the icon. In that case, set an
empty string on the name property:
{'shown_in_panel': {'icon': 'fa-thumbs-up', 'name': ''}}
You could also want to add a hotkey. In such case add the hotkey
property:
{'shown_in_panel': {'icon': 'fa-thumbs-up', 'hotkey': 'F'}}
You can show filter, groups or even favorites.
Bugs are tracked on GitHub Issues.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us to smash it by providing a detailed and welcomed
feedback.
Do not contact contributors directly about support or help with technical issues.