I just starting to using odoo 11. i'm using tree, for displaying data of one2many field.
<field name="account_ids" nolabel='1'>
<tree editable="bottom">
<field name="image" class="oe_avatar" widget="image"/>
<field name="remark" />
</tree>
</field>
i dont want this field to be open when you click the list
i already read several reference, and tried to:
add "open = false", not working
add option = {'open': False}, not working
add create=False or edit=False, you can't edit or add item again, if you already add item and click it, the open pop up window still appear
i appreciate for your helps! thanks