Skip to Content
Menu
This question has been flagged
1 Reply
2822 Views

It's possible to define too(2) trees for a record and call one in edit mode and other in view mode.

One with attribute editable="bottom" and the other without this attribut.

The goal is to be able to open a form in view mode and edit records in treeview inline when update bouton is clicked.

Thanks to answer me. 

Avatar
Discard
Author Best Answer

Hello, thanks to your answer but it is not realy what i wanna do.

I want to have something like that : 

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

<field name="name">name</field>
<field name="model">model.model</field>
<field name="type">tree</field>
<field name="arch" type="xml">
<tree editable="bottom" domain="[('widget.view.is_action_enabled('edit')', '=', False)]">
<field name="employee_id"/>
<field name="company_id"/>
</tree>
<tree domain="[('widget.view.is_action_enabled('edit')', '!=', False)]">
<field name="employee_id"/>
<field name="company_id"/>
</tree>
</field>
</record>

when I mentioned <tree editable="bottom"> I will add attachment through tree view itself only. it is looking fine for me. But when I have saved current record and click on row of tree view that is one of the attachment it will not redirect to file details or ir attachment form view. but if i did not mentioned editable="bottom" then it will redirect to form view for same case.

Thank you in Advance :)

 

Avatar
Discard
Related Posts Replies Views Activity
1
Sep 21
3990
1
Oct 16
2991
1
Sep 15
9328
4
Dec 23
18940
2
Apr 20
10841