Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
3 Trả lời
12461 Lượt xem

Hi to all, does any one know here how to add a button outside on a tree view? On the top of tree view i want to add button on it.


Thanks.

Ảnh đại diện
Huỷ bỏ




custom.tree.view
your.model
















Câu trả lời hay nhất

It's better to add a button on your 'more' . Like this :

 <act_window id="Id" name="Name in the more"
src_model="model with the button" res_model="wizard called" view_type="form"

view_mode="form" key2="client_action_multi" target="new" />

<record id="id" model="ir.ui.view">

    <field name="name"Name</field>

    <field name="model">Wizard called</field>

    <field name="arch" type="xml">

        <form>

        </form> 

    </field>

</record>


Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

Hi, 

Refer the blog on how to add button near the tree view 

Here is the link to the blog/video

https://www.cybrosys.com/blog/how-to-add-a-create-button-near-tree-kanban-view-in-odoo-15

https://www.youtube.com/watch?v=KUNMxMMVwgU

Regards

Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

Yes it is posible to add button in list view outside tree view but it will add button for all tree view.


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

  <t t-extend="ListView.buttons">

<t t-jquery="button.oe_list_add" t-operation="append">

<button class="oe_button oe_highlight"

type="button">Test</button>

</t>

</t>

</templates>

Ảnh đại diện
Huỷ bỏ
Tác giả

What about field? I mean, when a user is in tree view there is a selection field shown to him so that he can select on it before the tree is being populated.

using wizard add selection options under "More" menu in List view. You can refer default sale module wizard code.

Tác giả

Can you give me more explanation on how to do it? I really kindda lost on "....

"templates" or "template"?
this is an xml inside /static/src/xml of your module
What else?