This question has been flagged
1 Reply
10384 Views

When you click on a record in a tree view, you switch to the form view of that record in a view mode. You can then click edit, and edit the form.

Can you put a tag in the XML or something to make the form view automatically open in edit mode?

It is not a huge problem to click edit, but it would be faster for user input to get rid of that extra click.

Thanks.

Avatar
Discard
Best Answer

You can use editable="bottom" in the tree view.

<field name="pf_nominee_id" nolabel="1">
        <tree string=' PF Details' editable="bottom"> 
                <field name='pf_nominee_name'/>
                <field name='pf_nominee_dob'/>
                <field name='pf_nominee_relation'/>
                <field name="pf_nominee_address"/> 
                <field name="pf_nominee_percentage"/>
        </tree>
 </field>

Here pf_nominee_id is the one2many field.

Avatar
Discard
Author

This would allow the user to add items to the tree view wouldn't it? I don't want the user to be able to add records, just edit the records that have already been created.

Have you used this code in your production ?, this will allow user to edit the one2many field and adding the record is default functionality.I just answer your question that how to avoid the edit form and do the editing in the tree view. Thankyou.

The form will probably have more fields than the tree view. This isn't a workable solution in most cases.