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

How can I use the sheet tag in a form?

アバター
破棄
最善の回答

Hello,

You can use sheet tag within the form tag which must have version="7.0" attribute .

see this example which might help you more

     <record model="ir.ui.view" id="object_name_form_view">
        <field name="name">object_name.form.view</field>
        <field name="model">object_name</field>
        <field name="arch" type="xml">
            <form string="form_string" version="7.0">
                <sheet>
                    <field name="field_name"/>
                </sheet>
            </form>
        </field>
    </record>

Thanks

アバター
破棄

Thanks Mayur!

著作者

Thank you! It really helped me.

Can we minimise the size of <sheet tag>

関連投稿 返信 ビュー 活動
1
11月 24
1874
1
9月 21
9609
1
1月 24
17215
0
3月 15
3447
1
5月 24
1695