Odoo 在不同选项卡中打开树视图行

Odoo 在不同选项卡中打开树视图行,odoo,odoo-10,Odoo,Odoo 10,我有一个自定义的Odoo模块,其中我有一个视图,通过使用小部件many2many,在表中显示字段(树状视图): <page string="Órdenes a costear"> <field string="Órdenes a costear" name="orders" widget="many2many" /> </page> 但是那里没有运气 您知道通过使用模型或视图属性(如选项)是否可以实现这一点吗?否则,您知道继承和修改现有小部件是否有帮

我有一个自定义的Odoo模块,其中我有一个视图,通过使用小部件
many2many
,在表中显示字段(树状视图):

<page string="Órdenes a costear">
    <field string="Órdenes a costear" name="orders" widget="many2many" />
</page>
但是那里没有运气

您知道通过使用模型或视图属性(如
选项
)是否可以实现这一点吗?否则,您知道继承和修改现有小部件是否有帮助吗


我希望避免为了完成此操作而从头开始创建小部件。

您尝试过editable=“bottom”以及no_create=True吗?@Damoresys按照上面的评论进行尝试,现在就尝试,不适合我。对你有用吗?是的…@damores
options="{'no_create_edit': True, 'no_create': True, 'no_open': True}"