lab.nexedi.com will be down from Thursday, 20 March 2025, 07:30:00 UTC for a duration of approximately 2 hours

Commit b61ad7bd authored by Yoshinori Okuji's avatar Yoshinori Okuji

Do not use onchange in the list of search boxes,

because it's now useless and even harmful.
(e.g. erase text in a box and click on another box)


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@779 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent d6972258
......@@ -919,11 +919,9 @@ onChange="submitAction(this.form,'%s/portal_selections/setReportRoot')">
if cname[0] in search_columns_id_list:
list_search = list_search + (
"<td class=\"DataB\"><font size=\"-3\"> \
<input name=\"%s\" size= \"8\" value=\"%s\" \
onchange=\"submitAction(this.form,'%s/doSelect')\" > \
<input name=\"%s\" size= \"8\" value=\"%s\" > \
</font></td>\n" % \
(str(cname[2]) , params.get(str(cname[2]),'') ,
REQUEST.URL1 ))
(str(cname[2]) , params.get(str(cname[2]),'')))
else:
list_search = list_search + (
"<td class=\"DataB\"></td> ")
......
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