Skip to Content
Menu
Dette spørgsmål er blevet anmeldt
1 Svar
11588 Visninger

Hello,

I have a question, i have created a new module, but this module don't show the labels in view form, what can i do? Thanks.

Attach the example:

 <record model="ir.ui.view" id="ficha_cliente_form">
            <field name="name">ficha.cliente.form</field>
            <field name="model">ficha.cliente</field>
        <field name="type">form</field>
            <field name="arch" type="xml">
                <form string="Clientes" version="7.0">
                    <field name="nom"/>
                    <field name="cognom1"/>
                    <field name="cognom2"/>        
            <field name="direccio"/>        
            <field name="telefon"/>                         
            <field name="poblacio"/>        
                </form>
            </field>
        </record>
Avatar
Kassér
Bedste svar

Hi,

use a tag group

  <form string="Clientes" version="7.0">
     <group>
       <field name="nom"/> 
       <field name="cognom1"/> 
        .....
    </group>
  </form>
Avatar
Kassér
Forfatter

Works great, thank you very much.

Related Posts Besvarelser Visninger Aktivitet
2
jan. 24
13082
1
nov. 24
1634
1
sep. 21
9407
1
jan. 24
17013
1
mar. 15
9911