Skip to content
Snippets Groups Projects
Commit 19a1c18f authored by Xavier Morel's avatar Xavier Morel
Browse files

[FIX] make m2m checkbox labels clickable

parent bafa1a67
No related branches found
No related tags found
No related merge requests found
......@@ -2023,13 +2023,11 @@
<t t-name="FieldMany2ManyCheckBoxes">
<t t-foreach="widget.get('records')" t-as="record">
<div>
<t t-if="selected[record[0]]">
<input type="checkbox" t-att-data-record-id="JSON.stringify(record[0])" checked="true"/>
</t>
<t t-if="! selected[record[0]]">
<input type="checkbox" t-att-data-record-id="JSON.stringify(record[0])"/>
</t>
<t t-esc="record[1]"/>
<label style="font-weight: normal">
<input type="checkbox" t-att-data-record-id="JSON.stringify(record[0])"
t-att-checked="selected[record[0]] or null"/>
<t t-esc="record[1]"/>
</label>
</div>
</t>
</t>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment