This question has been flagged
1 Reply
2506 Views

I want to delete the create and edit function of a many2one field but i want to keep the search more function

what should i do by coding of using the web interface?

Avatar
Discard

What do you mean by search more function?

Best Answer

Edit the view of the form of this many2one field and set create and edit to false:

...
<form string="Whatever" version="7.0" create="false" edit="false">
...

Avatar
Discard