Hi,
When it`s submited a form with widget dijit.form.FilteringSelect, are sending two parameters with the same value and distinct name.
the name one is the input name and the other is empty.
***html + dojo code:
...options
***the output server after submit is :
28-sep-2007 12:54:46 org.apache.tomcat.util.http.Parameters processParameters
WARNING: Parameters: Invalid chunk ignored.
***the url generated after submit is:
http://localhost:8080/app/frameset?=All&codigo=All&__format=html&__repor...
***I thinks the WARNING is due to :
(?=All&Codigo=All&....)
***i think that the problem is in generated code of FilteringSelect:
this dojo code:
...options
generates:
how can i avoid this behaviour? any idea?
thanks!
donkelito
PD. Greate job in expanded tree!
Submit Forms with input dojoType="dijit.form.FilteringSelect" 2
ups! i don´t write the codes!
***html + dojo code:
select dojoType="dijit.form.FilteringSelect" size="13" id="comboDate" name="codigo"
...options
this code generates:
input id="comboDate" class="XdijitInputField dijitInputFieldValidationNormal" type="text" wairole="combobox" maxlength="999999" size="13" tabindex="0" dojoattachpoint="textbox,focusNode" dojoattachevent="onkeypress, onkeyup, onfocus, onblur, compositionend" autocomplete="off" role="wairole:combobox" value="" valuenow="2003" invalid="false" disabled="false"
input type="text" value="" style="display:none" name="codigo"
thanks!
Form submit problem
Hello,
Browsers typically do not send the inputs/selects with name="" or without name. I suspect that form action somehow modified by some javascript code or hardcoded into the action attribute.
The FilteringSelect examples that I checked in Dojo 0.9 work well.
Sincerely,
Alex