Search code examples
pythonodooodoo-11

Odoo v11 how can i get Many2many Fields in my view so i can Write on them


i want to fill those fields in my datagrid or many2many fields without been forced to go another formula i wanna just do it from there Like this

Instead of This 3 Post Edited / I have added editable but still not giving me to write on the same form one i click the add element they redirect to another formula 2


Solution

  • editable="bottom" as tree property is the solution

    if you define your field in your view, define a tree inside with the above property:

    <field name="one2many_ids">
    <tree string="Theese are the list items" editable="bottom">
        <field name="field_1"></field>
        ...
    </tree>