You can use group to display the field label:
<group> <field name="myfield"/> </group>
There is group right after the name field, this can be done using xpath :
<xpath expr="//group" position="inside"> <field name="myfield"/> </xpath>
In the first example, you can use position="before"
source share