Create a Dynamic View in OpenERP/ ODOO

In dynamic view we can manage view from xml file. Therefore you can create a dynamic view as done in example stated below

  1. <record model=”ir.ui.view” id=”session_tree”>
  2. <field name=”name”>session tree</field>
  3. <field name=”model”>session</field>
  4. <field name=”arch” type=”xml”>
  5. <tree string=”Session”>
  6. <field name=”name”/>
  7. <field name=”start_date”/>
  8. <field name=”duration”/>
  9. <field name=”seat”/>
  10. <field name=”attendee1″/>
  11. <field name=”instructor”/>
  12. <field name=”course”/>
  13. </tree>
  14. </field>
  15. </record>

Create a Dynamic View in OpenERP/ ODOOFor complete set of codes, read full Blog at: Create a Dynamic View in OpenERP/ ODOO

FindNerd’s Php questions and answers forum is developed for those tech geeks who don’t want to wait for a longer duration of time, as the community members within FindNerd can answer any android query within shortest possible time frame.

Apart from this, If you have any language query like C, Java, JavaScript, iOS, Html, PHP etc . you can post at FindNerd’s Java questions and answers forum.

Create a Dynamic View in OpenERP/ ODOO

Leave a comment