Odooers论坛

欢迎!

该社区面向专业人士和我们产品和服务的爱好者。
分享和讨论最好的内容和新的营销理念,建立您的专业形象,一起成为更好的营销人员。


0

Odoo 15 - How can I hide a button in the list view when select any value from the list?

形象
丢弃
1 答案
0
形象
odoo
最佳答案

Hi,

On the xml file where we added the button(Test) add the condition like below.

<?xml version="1.0" encoding="UTF-8"?>


<templates id="template" xml:space="preserve">


    <t t-extend="ListView.buttons" t-name="button_near_create.button">


       <t t-jquery="button" t-operation="after">


           <t t-if="widget.is_action_enabled('export_xlsx') and widget.isExportEnable">


               <button t-if="widget.modelName == 'res.partner'"


                   class="btn btn-primary o_list_export_xlsx open_wizard_action_kanban oe_highlight"


                   type="button">Open Wizard</button>


           </t>


       </t>


   </t>


</templates>


Regards

1 备注
形象
丢弃
形象
odoo
-

It works! Thank you for you help

Regards