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.

21 lines
621 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" field_x_axis="demo_id" field_y_axis="user_id" field_value="value">
  10. <tree>
  11. <field name="demo_id"/>
  12. <field name="user_id"/>
  13. <field name="value"/>
  14. </tree>
  15. </field>
  16. </form>
  17. </field>
  18. </record>
  19. </odoo>