mirror of
https://github.com/OCA/web.git
synced 2025-02-22 13:21:25 +02:00
* Fixed the issue of expand shrink buttons showing on discuss menu. * Added debounce event when buttons are clicked. * Fixed the issue of buttons are added in FavoriteMenu. * Restructured the code to fix other various issue like only display group by expand buttons if group by button is visible. NOTE: Earlier code was not honoring disable_groupby by flag in searchview
11 lines
555 B
XML
11 lines
555 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<template id="assets_backend" name="web_groupby_expand assets" inherit_id="web.assets_backend">
|
|
<xpath expr="." position="inside">
|
|
<link rel="stylesheet" href="/web_group_expand/static/src/css/web_group_expand.css"/>
|
|
<script type="text/javascript" src="/web_group_expand/static/src/js/web_group_expand.js"></script>
|
|
<script type="text/javascript" src="/web_group_expand/static/src/js/web_group_expand_menu.js"></script>
|
|
</xpath>
|
|
</template>
|
|
</odoo>
|