Pular para o conteúdo
Menu
Esta pergunta foi sinalizada
1 Responder
10091 Visualizações

How can I use the sheet tag in a form?

Avatar
Cancelar
Melhor resposta

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
Cancelar

Thanks Mayur!

Autor

Thank you! It really helped me.

Can we minimise the size of <sheet tag>

Publicações relacionadas Respostas Visualizações Atividade
1
nov. 24
1803
1
set. 21
9570
1
jan. 24
17166
0
mar. 15
3414
1
mai. 24
1642