This question has been flagged
1 Reply
3159 Views

Hello Community, 

<group>

<field name="field1">

<field name="field2">

</group>


is there  a possibility to expand/collapse group in odoo form view ?

Avatar
Discard
Best Answer

If you mean something like drilldown views, it is not possible inside groups.

please refer this link

If you need you can hide a field according to value in another field in form using
<field name="your_field" attrs="{'invisible':[('another_field', '!=', False)]}"/

Avatar
Discard