@ l_olivier
Quote:
Is there a way to put the wizard in the tree view ? with a bouton ? an action ?
I tried successfully to open wizard by click on a button on each line in tree view.
I hope it would be useful to you.
Here I want to share my code.
<record id="view_issue_tree" model="ir.ui.view">
<field name="name">project.issue.tree</field>
<field name="model">project.issue</field>
<field name="type">tree</field>
<field name="arch" type="xml">
<tree string="Bugs">
<field name="number"/>
<field name="name"/>
<field name="project_id"/>
<field name="priority"/>
<field name="state"/>
<field name="user_assign_id"/>
<field name="secure"/>
<button string="Subscribe Me" icon="terp-crm" name="%(wizard_subscribe_me)d" type="action"/>
</tree>
--
Regards,
rch