Advertisement
Guest User

Custom button ListView - Odoo 15

a guest
Jan 12th, 2022
278
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.39 KB | None | 0 0
  1. With t-name
  2. <t t-extend="ListView.buttons" t-name="HrExportListView.buttons">
  3.     <t t-jquery="button.o_list_export_xlsx" t-operation="after">
  4.         <button type="button" class="oe_export_ins">INS</button>
  5.     </t>
  6. </t>
  7.  
  8. Without t-name
  9. <t t-extend="ListView.buttons">
  10.     <t t-jquery="button.o_list_export_xlsx" t-operation="after">
  11.         <button type="button" class="oe_export_ins">INS</button>
  12.     </t>
  13. </t>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement