コンテンツへスキップ
メニュー
この質問にフラグが付けられました
2 返信
16473 ビュー

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>

アバター
破棄
最善の回答

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>

 

 

アバター
破棄
著作者

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.

著作者 最善の回答

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

アバター
破棄