I inherited form view and want to put new field inside that fields group after those fields that are inside that group. The problem is that group defined in original form does not have name, so I don't see a way to give correct path where my field should be located. For example let say there is such form with this group defined:
...
<group>
<field name="first"/>
<field name="second"/>
</group>
...
So if I inherit that form and try something like this:
<field name="arch" type="xml>
<field name="second" position="after"/>
<field name="third"/>
</field>
Using such approach will place my field after group which makes not properly lined with those other fields (for example it goes out bellow upper field values (both label and field). It looks like this:
label_of_first | first
label_of_second | second
label_of_third | third