Commit 34112967 authored by Fabien Morin's avatar Fabien Morin

remove id from checkbox in listbox lines. In most of cases, this id was hudge...

remove id from checkbox in listbox lines. In most of cases, this id was hudge (more than 100 caracters) and was not XHTML valid (because it contain invalid caracters such '=' wich are not XHTML valid)
And I found it was not used. This will make big listbox a bit faster and make page more XHTML valid.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@26386 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 99b10c9e
......@@ -341,10 +341,9 @@
class="DataA" style="width: 50px; text-align: center; vertical-align: middle"\n
tal:attributes="class css">\n
<input tal:condition="python: not line.isSummary() and line.getObject() is not None"\n
type="checkbox" value="checked" id="listbox_cb_1" name="uids:list"\n
type="checkbox" value="checked" name="uids:list"\n
tal:attributes="checked python: line.getUid() in checked_uid_set;\n
value line/getUid;\n
id string:${field_id}_cb_${line/getUid}" />\n
value line/getUid;">\n
<tal:block tal:condition="python: line.isSummary() or line.getObject() is None"></tal:block>\n
</td>\n
<tal:block tal:repeat="value render_result">\n
......
699
\ No newline at end of file
702
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment