我按要求面对新问题。 我需要打开一个新的树状视图,通过单击带有“更多”选项的下拉列表来显示学生列表
答案 0 :(得分:0)
举个例子
在model.py
中
student_ids = fields.Many2many('student.student',string='Student')
在view.xml中
<field name="student_ids" widget="many2many_tags" />
然后该字段将在下拉列表中显示更多搜索,并在单击时显示树视图。