Hello,
I'm using Odoo 13.0. I have added a field in a tree view with a progressbar widget. But I'm not able to edit this field.
Here is my view code :
<record id="view_task_tree2_inherited_inherited" model="ir.ui.view">
<field name="name">project.task.tree.inherited.inherited</field>
<field name="model">project.task</field>
<field name="inherit_id" ref="hr_timesheet.view_task_tree2_inherited"/>
<field eval="2" name="priority"/>
<field name="arch" type="xml">
<xpath expr="/tree" position="attributes">
<attribute name="editable">top</attribute>
</xpath>
<field name="effective_hours" position="after">
<field name="real_estimated_progress" widget="progressbar" readonly="0" optional="show"
groups="hr_timesheet.group_hr_timesheet_user"/>
</field>
</field>
</record>
Is it possible to edit a field having widget attributes defined to "progressbar" ?
Thank's a lot.
Same problem in form view for the field having widget "progressbar" defined.
if I remove the "widget="progressbar"" attribute, the field becomes editable. But it's not that I want. I want to edit the field from the progressbar. Is it possible ?