Hi,
I'm on odoo v17.0 saas (with studio).
In a treeview, i have a one2many field with several entries, showing "2 records" (exemple).
field 1 | field 2 | field 3 (one2many) |
xxxxx | yyyyyy | 2 records |
I want to explode this field: instead of showing "2 records", i want to show some fields of these entries :
field 1 | field 2 | field 3 (one2many) |
xxxx | yyyyy | aaa1 bbbb1 aaa2 bbbb2 |
I found some tips to achieve this by editing the xml and using widget="one2many_list", but it doesn't seem to be working (or maybe i'm doing wrong).
Is there a way to do this ?
Thanks
F.MAT