Přejít na obsah
Menu
You need to be registered to interact with the community.
This question has been flagged
4 Odpovědi
5366 Zobrazení

Hey i have a view in which a line view when clicked also has a form view which pops up. I want to xpath a field inside that popping form but unable to do so . here is the code

<page string="Products">
<field
name="line_ids">
<tree
decoration-muted="cancelled == True">
<field
name="product_id"/>
<field
name="name"/>
<field name="is_editable" invisible="1"/>
</tree>
<form>
<sheet>
<group>
<group>
<field
name="is_editable" invisible="1"/>
<field
name="product_id"
attrs="{'readonly': [('is_editable','=', False)]}"/>
<field
name="name"
attrs="{'readonly': [('is_editable','=', False)]}"/>
<label
for="product_qty"
attrs="{'readonly': [('is_editable','=', False)]}"/>
<div>
<field
name="product_qty"
class="oe_inline"
attrs="{'readonly': [('is_editable','=', False)]}"/>
More or less this is what it looks like.
Avatar
Zrušit
Autor

P.s. ignore open tags its just a sample

right now i have tried using

<xpath expr="/field[@name='line_ids']/tree/form/sheet//field[@name='product_id']" position="before">

but this is not working

Autor Nejlepší odpověď

ok I found an answer of my solution

here is the solution

<xpath expr="//field[@name='line_ids']/form/sheet/group/group" position="inside">
Avatar
Zrušit
Nejlepší odpověď

Thanks for the help. Am also facing the same issue

Avatar
Zrušit
Related Posts Odpovědi Zobrazení Aktivita
4
pro 23
18296
1
zář 19
4057
1
čvc 25
2159
2
kvě 24
2915
1
úno 24
1645