This question has been flagged
2 Replies
7324 Views

I want to make a field readonly in edit mode and editable in create mode in openerp. I want a field for which value is specified while creating and later it should not be changed.

This is my code:

<field name = "apply_to_future" class="oe_edit_only" attrs="{'readonly':[('status','=','Draft')]}" />

 

Thanks in advance

Avatar
Discard
Best Answer

Have you tried including ID in the view and set the attrs="{'readonly':[('id','>',0)]}" ?

Avatar
Discard
Author Best Answer

Thanks Ivan,

We got, 

attrs="{'readonly':[('pay_value','!=',False)]}"

Avatar
Discard
Author

attrs="{'readonly':[('pay_value','!=',False)]}"