Overslaan naar inhoud
Menu
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Deze vraag is gerapporteerd
3 Antwoorden
12445 Weergaven

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.

Avatar
Annuleer




custom.tree.view
your.model
















Beste antwoord

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>


Avatar
Annuleer
Beste antwoord

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

Avatar
Annuleer
Beste antwoord

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>

Avatar
Annuleer
Auteur

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.

Auteur

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?