This question has been flagged

Every stages in the kanban view, It has configuration where there is a checkbox and whenever I set it to True, the form will be editable but if not it will not be editable. 

Avatar
Discard
Best Answer

you can use this in your xml field.

attrs="{'readonly':[('checkbox','=',True)]}"

<field name="fieldname" attrs="{'readonly':[('checkbox','=',True)]}" />


Avatar
Discard