I'm trying to create a Kanban view that displays some data I have specified , But it shows this error
TypeError: node is undefined
Here is my code:
<record id="projection_view_kanban" model="ir.ui.view">
<field name="name">projection.target.kanban</field>
<field name="model">projection.target</field>
<field name="priority" eval="8"/>
<field name="arch" type="xml">
<kanban class="o_kanban_mobile">
<field name="sales_man"/>
<field name="target"/>
</kanban>
</field>
</record>
Somebody please tell me how to deal with this?