如何从多个字段中删除“搜索更多...”选项?

时间:2016-05-31 14:38:46

标签: xml many-to-many odoo odoo-11

如果我使用小部件many2many_tags显示many2many字段,则会在下拉菜单中显示“搜索更多...”选项。我怎么能避免它?

<field name="groups_id" 
       widget="many2many_tags"  
       create="0" 
       options="{'no_create_edit': True,'no_quick_create':True,'no_create':True,'no_open':True}"/>

enter image description here

有没有办法删除“搜索更多...”选项?

1 个答案:

答案 0 :(得分:1)

您有两种选择:

  • 您可以使用widget="selection"。虽然我认为这仅适用于Many2one字段。
  • 您可以安装模块web_m2x_options,但在这种情况下您应该写一个限制,如下所示:
<field name="groups_id" 
       options="{'limit': 10, 'create': false, 'create_edit': false}"/>