In accounting, journal items list view has a special filter for period and journal. The action view_mode = tree_account_move_line_quickadd which links to a javascript file where I find instance.web.ListView.extend({ ... }). I am not able to reproduce this in another model.
Source code: https://github.com/odoo/odoo/search?q=tree_account_move_line_quickadd
The documentation says nothing about this: https://www.odoo.com/documentation/8.0/howtos/web.html
The documentation module oepetstore works well with: local.Homepage = instance.Widget.extend({ ... })
But this fails: local.Test = local.Homepage.extend({ ... })
How do I extend a custom javascript jQuery class?