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.
|
|
<?xml version="1.0" encoding="utf-8"?> <openerp> <data>
<record id="base_custom_info_value_tree" model="ir.ui.view"> <field name="name">base.custom.info.value.tree</field> <field name="model">custom.info.value</field> <field name="arch" type="xml"> <tree string="Custom Property Values"> <field name="property_id"/> <field name="value"/> <field name="model_id"/> <field name="res_id"/> </tree> </field> </record>
<record id="custom_info_value_action" model="ir.actions.act_window"> <field name="name">Values</field> <field name="type">ir.actions.act_window</field> <field name="res_model">custom.info.value</field> <field name="view_mode">tree,form</field> <field name="view_type">form</field> </record>
</data> </openerp>
|