This question has been flagged
1 Reply
5370 Views

Menu Project, Tasks provides a button for Kanban view, and even defaults to the Kanban view.

The Tasks link from the Projects page goes to a Search:Tasks page that does not have a button for Kanban view. How do I add a Kanban button here?

Avatar
Discard
Author

I wonder how I would go about finding the answer in the source code?

Best Answer

I recently added a kanban view for manufacturing orders. To make kanban button display I needed to added kanban on this action menu:

    <record id="mrp_production_action" model="ir.actions.act_window">
        <field name="name">Manufacturing Orders</field>
        <field name="type">ir.actions.act_window</field>
        <field name="res_model">mrp.production</field>
        <field name="view_type">form</field>
        <field name="view_mode">kanban,tree,form,calendar,graph,gantt</field>
    .....
    </record>
Avatar
Discard