If you want to make wizard views in OpenERP(Odoo) follow the below mentioned code and paste it in your wizard views_xml file:
<record id="action_idea_cleanup_wizard" model="ir.actions.act_window">
<field name="name">Cleanup</field>
<field name="type">ir.actions.act_window</field>
<field name="res_model">idea.cleanup.wizard</field>
<field name="view_type">form</field>
<field name="view_mode">form</field>
<field name="target">new</field>
</record>
Note-> Wizards use regular views and their buttons may use a special cancel attribute
to close the wizard window when clicked.
0 Comment(s)