Commit b19b0648 authored by Fabien Morin's avatar Fabien Morin

remove some id's. There are not used in css selector of xhtml_style and km but...

remove some id's. There are not used in css selector of xhtml_style and km but make the page invalid in case of more than one listbox displayed on a form.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@26158 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 957a9b45
......@@ -79,7 +79,6 @@ tal:define=" listbox_max_lines python: int(here.getMaxLineNumber());\n
size="40" \n
value="" \n
tal:condition="python:here.getParamDict().has_key(\'your_search_text\')"\n
id="SearchableText"\n
type="text"\n
onkeypress="submitFormOnEnter(event, \n
\'main_form\',\n
......@@ -90,7 +89,6 @@ tal:define=" listbox_max_lines python: int(here.getMaxLineNumber());\n
size="40" \n
value="" \n
tal:condition="python:not here.getParamDict().has_key(\'your_search_text\')"\n
id="SearchableText"\n
type="text"\n
onkeypress="submitFormOnEnter(event, \n
\'main_form\',\n
......@@ -351,7 +349,7 @@ tal:define=" listbox_max_lines python: int(here.getMaxLineNumber());\n
\n
<input name="bottom_your_search_text" \n
size="40" \n
value="" id="SearchableTextBottom"\n
value=""\n
tal:condition="python:here.getParamDict().has_key(\'your_search_text\')"\n
type="text" \n
onkeypress="submitFormOnEnter(event, \n
......@@ -361,7 +359,7 @@ tal:define=" listbox_max_lines python: int(here.getMaxLineNumber());\n
\n
<input name="bottom_your_search_text" \n
size="40" \n
value="" id="SearchableTextBottom"\n
value=""\n
tal:condition="python:not here.getParamDict().has_key(\'your_search_text\')"\n
type="text"\n
onkeypress="submitFormOnEnter(event, \n
......@@ -381,7 +379,7 @@ tal:define=" listbox_max_lines python: int(here.getMaxLineNumber());\n
<input tal:define ="params python: {\'ERP5Site_processAdvancedSearchBottom:method\':\'\',\'bottom_your_search_text\':\'this.value\'};"\n
name="bottom_your_search_text" \n
size="25" \n
value="" id="SearchableTextBottom"\n
value=""\n
tal:condition="python: here.getParamDict().has_key(\'your_search_text\')"\n
type="text"\n
tal:attributes=\'value python:here.getParamDict()["your_search_text"];\n
......@@ -391,7 +389,7 @@ tal:define=" listbox_max_lines python: int(here.getMaxLineNumber());\n
<input tal:define ="params python: {\'ERP5Site_processAdvancedSearchBottom:method\':\'\',\'bottom_your_search_text\':\'this.value\'};"\n
name="bottom_your_search_text" \n
size="25" \n
value="" id="SearchableTextBottom"\n
value=""\n
tal:condition="python:not here.getParamDict().has_key(\'your_search_text\')"\n
type="text"\n
tal:attributes=\'onkeypress python:"if(event.keyCode==13){" + real_context.KnowledgePad_generateAjaxCall(absolute_url+"/"+form_id,box,box_id,params).replace("\\"this.value\\"","this.value")+ "return false;;}"\'/>\n
......
......@@ -438,7 +438,7 @@
<!-- Advanced Search header -->\n
<div class="centeredInner extendedSearchBar"\n
tal:condition="python:not is_gadget_mode and show_search_line and here.getParamDict().has_key(\'advanced_search_text\')">\n
<input name="advanced_search_text" size="40" value="" id="SearchableTextBottom"\n
<input name="advanced_search_text" size="40" value=""\n
type="text" tal:attributes="value python:here.getParamDict()[\'advanced_search_text\']"\n
onkeypress="submitFormOnEnter(event,\n
\'main_form\',\n
......
672
\ No newline at end of file
673
\ 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