Hi
There is a many2many field which is viewing with many2many_tags widget .
<field name="tag_ids" widget="many2many_tags" placeholder="Tags..." options="{'no_create_edit': True}"/>
In the tag_ids model I have regular 'sequence' field. If the many2many field has tree/list view I can manage the drag / movable option of the many2many table by using following:
<field name="tag_ids">
<tree create="false" delete="false">
<field name="sequence" widget="handle"/>
<field name="display_name"/>
</tree>
</field>
Is there any way to use widget='handle' with many2many_tags?