Commit 7873bb0d authored by Yoshinori Okuji's avatar Yoshinori Okuji

Fix the javascript for onchange in text inputs. But this is

actually no effect since Mozilla or Konqueror seems not to
support onchange in text inputs.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@691 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 46a384f9
......@@ -918,11 +918,11 @@ 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('%s')\" > \
<input name=\"%s\" size= \"8\" value=\"%s\" \
onchange=\"submitAction(this.form,'%s/doSelect')\" > \
</font></td>\n" % \
(str(cname[2]) , params.get(str(cname[2]),'') ,
REQUEST.URL ))
REQUEST.URL1 ))
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