Skip to Content
Menú
This question has been flagged
1 Respondre
9882 Vistes

How can I use the sheet tag in a form?

Avatar
Descartar
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
Descartar

Thanks Mayur!

Autor

Thank you! It really helped me.

Can we minimise the size of <sheet tag>

Related Posts Respostes Vistes Activitat
1
de nov. 24
1614
1
de set. 21
9392
1
de gen. 24
17005
0
de març 15
3287
1
de maig 24
1454