forum

Home / DeveloperSection / Forums / How to move a field to other position in a OpenERP7 form view?

How to move a field to other position in a OpenERP7 form view?

Anonymous User219806-Nov-2014

I made a form view in OpenERP7, which inherits from an existing form view.

I am trying to move some field to other position, only moving, because I need to preserve its functionality.

Easy example: let's suppose that the name of the field I want to move is field_to_move, and I want to move it just after the field called above_field. I tried the next code:

<xpathexpr="/form//field[@name='field_to_move']"position="replace"><xpathexpr="/form//field[@name='above_field']"position="after"><fieldname="field_to_move"on_change="onchange_type(field_to_move)"/></xpath></xpath>

The result is wrong, I am generating the  new field in a wrong position (the same before the changes) and the old field is still visible, so it is duplicated.


Updated on 06-Nov-2014
I am a content writter !

Can you answer this question?


Answer

1 Answers

Liked By