我正在尝试在过滤器的下拉列表中添加自定义菜单项
在 Odoo14 和 owl 框架中,一些菜单项存在于以下代码段内的基本模块中
<t t-name="web.CustomFilterItem" owl="1">
<div class="o_generator_menu">
<button type="button"
class="o_add_custom_filter dropdown-item"
aria-expanded="false"
t-ref="fallback-focus"
t-on-click="state.open = !state.open"
t-on-keydown="_onKeydown"
>
<t>Add Custom Filter</t>
</button>
</div>
</t>
所以在我的自定义模块中,我正在执行以下操作来添加自定义项
<?xml version="1.0" encoding="UTF-8" ?>
<templates>
<t t-extend="web.CustomFilterItem">
<t t-jquery=".o_add_custom_filter" t-operation="after">
<div
role="separator"
class="dropdown-divider o_generator_menu"
/>
<button
type="button"
class="dropdown-item o_generator_menu o_add_advanced_search"
aria-expanded="false"
>Custom Item</button>
</t>
</t>
</templates>
但它没有出现。有什么建议么?