Ticket #109 (closed defect: fixed)

Opened 2 years ago

Last modified 2 years ago

queryString() doesn't allow Array as one of values

Reported by: andrey.fedoseev@gmail.com Assigned to: somebody
Priority: highest Milestone: milestone4
Component: component2 Version:
Severity: major Keywords:
Cc:

Description

I have the following form and want to send it via doSimpleXMLHttpRequest():

<form name="dummy">
  <select name="ids" multilple="multiple" size="10">
    <option value="1">One</option>
    <option value="2">Two</option>
  </select>
</form>

When multiple options are selected I want them all to be submitted, so the resulting query string will be '?ids=1&ids=2'.

If I do queryString({ids:options}) where options is an Array("1","2") I get the following: 'ids=1%2C2'

Change History

09/25/06 16:43:35 changed by bob@redivi.com

  • status changed from new to closed.
  • resolution set to fixed.

Fixed in [1143]