You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
752 B

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <record id="x2many_2d_matrix_demo" model="ir.ui.view">
  4. <field name="name">x2m.matrix.demo.wiz</field>
  5. <field name="model">x2m.matrix.demo.wiz</field>
  6. <field name="type">form</field>
  7. <field name="arch" type="xml">
  8. <form>
  9. <field name="line_ids" widget="x2many_2d_matrix"
  10. field_x_axis="demo_id" field_y_axis="user_id" field_value="value">
  11. <tree>
  12. <field name="demo_id"/>
  13. <field name="user_id"/>
  14. <field name="value"/>
  15. </tree>
  16. </field>
  17. </form>
  18. </field>
  19. </record>
  20. </odoo>