Ir al contenido
Menú
Se marcó esta pregunta
1 Responder
4627 Vistas

Using Odoo 9 Community Version.

In the inherited view am trying to locate a page using its string attribute however I ended up facing the below error.


"view inheritance may not use attribute 'string' as a selector"



Upon close search I have realized, in Odoo 9, xpath expression doesn't seem to search based on string, then what is the alternative way to achieve the same.


Thanks


Avatar
Descartar
Mejor respuesta

Hi Deep,

Searching on the string attribute has been deprecated in Odoo 9, it was available in Odoo 8 though.
There are quite some alternatives to this. The first is to xpath by the field name:

<xpath expr="//field[@name='fieldName']" position="replace">

The second option is to do this by index, which is slightly worse since it has a bigger chance that the index of the item will change on some point (if you install / de-install modules):

<xpath expr="//group[1]" position="replace">

The above will get the second group that is in the current view (index starts counting from 0)

Yenthe

Avatar
Descartar
Autor

Hmmm. yes even I went with indexing which is not a good idea. wonder why did they do this :( anyways thanks:)

I remember Olivier Dony telling that it was error prone and could cause issues, that is why they removed it. Try to never go with indexing though, it changes too easily and breaks things. Always try to go by name. And more than welcome :)

Publicaciones relacionadas Respuestas Vistas Actividad
4
jul 20
7917
1
dic 19
6045
1
feb 18
4946
3
ene 18
5987
1
oct 16
5045