Skip to Content
Menu
This question has been flagged
1 Odpoveď
10075 Zobrazenia

How can I use the sheet tag in a form?

Avatar
Zrušiť
Best Answer

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

Avatar
Zrušiť

Thanks Mayur!

Autor

Thank you! It really helped me.

Can we minimise the size of <sheet tag>

Related Posts Replies Zobrazenia Aktivita
1
nov 24
1779
1
sep 21
9565
1
jan 24
17152
0
mar 15
3406
1
máj 24
1636