Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
1 Odpowiedz
7381 Widoki

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
Awatar
Odrzuć
Najlepsza odpowiedź

You should use XPath Element.

See Other Links,

xpath in openerp 7

Hope It work for you,

Awatar
Odrzuć
Autor

I can use xpath, but I need to specify in which group I want to place my fields. The problem is, that given group do not have name, it's nameless. So is there any way to show where that group is located without knowing it's name??

I use xpath and bumped into the exact same problem, but no solution yet. Does anyone have new light on this subject?

Powiązane posty Odpowiedzi Widoki Czynność
4
gru 21
31364
2
mar 15
8453
3
mar 15
6035
1
lis 24
1254
1
paź 24
1237