Skip to Content
Menu
You need to be registered to interact with the community.
This question has been flagged
2 Odgovori
16471 Prikazi

This is my code 

<record id="class_dashboard" model="ir.ui.view">
        <field name="name">class.kanban</field>
        <field name="model">class.dash</field>
        <field name="priority">10</field>
        <field name="arch" type="xml">
            <kanban>
                <field name = "name"/>
            <templates>
                <t t-name="kanban-box">
                    <div>
                        <ul>
                            <li t-if="record.name.raw_value">Class Name: <field name="name"/></li>
                        </ul>
                    </div>
                </t>
            </templates>
            </kanban>
        </field>
    </record>

Avatar
Opusti
Best Answer

Your architecture for Kanban looks proper. Try by putting more fields in your kanban view. For more detail you can refer kanaban view of Project module.

If you are not getting option of kanban view, might be you forgot to put view mode in action.

E.g. 

<field name="view_type">form</field>

<field name="view_mode">kanban,tree,form,calendar</field>

 

 

Avatar
Opusti
Avtor

in view_mode i have already added kanban. the code is running and am getting an error like "Invalid Architecture! There is no view of type 'kanban' defined for the structure!"

Have you put kanban ? view type should be form. form. Please check it.

Modified my answer. Please check view type. I can't put xml code in comment. It doesn't display xml code in comment. You can delete my previous comment if you have access.

Avtor Best Answer

Thanks michael, i had not given . <field name="view_id" ref="class_dashboard"/> Now i am getting the view

Avatar
Opusti