Ok, look, this is what i get in the log:

REMOTE HOST: localhost
REMOTE ADDRESS: 127.0.0.1
REMOTE USER: null
REQUEST SESSION ID: null
REQUEST PREFERRED LOCALE: en_US
SERVER HOST: localhost
SERVER PORT: 8080

METHOD: POST
CONTENT LENGTH: 303
PROTOCOL: HTTP/1.1
SCHEME: http
AUTH TYPE: null

REQUEST PARAMETERS:

PARAM: 'company' VALUE: 'Interakt'
PARAM: 'country' VALUE: '2'
PARAM: 'month' VALUE: '3'
PARAM: 'year' VALUE: '2000'
PARAM: 'selectC2' VALUE: '8'
PARAM: 'selectC1' VALUE: '2'
PARAM: 'type' VALUE: '1'
PARAM: 'checkcurrent' VALUE: '1'
PARAM: 'selectB2' VALUE: '6'
PARAM: 'selectB1' VALUE: '2'

It also should contain a field for my list, doesn't it?
something like PARAM: 'listC' ...
and, assuming that the values are passed, how can i get them in the form
processing xsp ?
maybe with request.getParameterValues("listC") ??

> Hi Andrei,
>
> Its hard to diagnose the problem without an example from your code :)
>
> This works for me by selecting the values from 1 column in the table and
> putting them into a combo box:
>
> ...
> <esql:execute-query>
>
> <esql:query>
> <!-- select a single column from the table -->
> </esql:query>
>
> <esql:results>
> <xsp:logic>
> <form action="blah" method="POST">
> <select name="fruit">
> <esql:row-results>
> <option><esql:get-columns/></option>
> </esql:row-results>
> </select>
>
> <input type="submit" value="Choose"/>
>
> </form>
> </xsp:logic>
> </esql:results>
>
> </esql:execute-query>
> ...
>
> Hope this helps,
>
> Best Regards,
>
> Chris
>
> > -----Original Message-----
> > From: Andrei Bejenaru [mailto:[EMAIL PROTECTED]]
> > Sent: 30 August 2001 10:35
> > To: [EMAIL PROTECTED]
> > Subject: Requesting multiple selection lists
> >
> >
> > I got a form with 3 selection lists which are dynamicaclly filled from a
> > bunch of selects and some other lists.
> > On submit (method is POST) all other input elements are send correctly
to
> > the action xsp; my 3 lists don't appear
> > between the request parameters in the log, nor I can apply a
> > getParameter or
> > getParameterValues method on them.
> >
> > Any ideeas ?
> >
> >
> > ---------------------------------------------------------------------
> > Please check that your question has not already been answered in the
> > FAQ before posting. <http://xml.apache.org/cocoon/faqs.html>
> >
> > To unsubscribe, e-mail: <[EMAIL PROTECTED]>
> > For additional commands, e-mail: <[EMAIL PROTECTED]>
> >
> >
> >
>
>
>
> ---------------------------------------------------------------------
> Please check that your question has not already been answered in the
> FAQ before posting. <http://xml.apache.org/cocoon/faqs.html>
>
> To unsubscribe, e-mail: <[EMAIL PROTECTED]>
> For additional commands, e-mail: <[EMAIL PROTECTED]>


---------------------------------------------------------------------
Please check that your question has not already been answered in the
FAQ before posting. <http://xml.apache.org/cocoon/faqs.html>

To unsubscribe, e-mail: <[EMAIL PROTECTED]>
For additional commands, e-mail: <[EMAIL PROTECTED]>

Reply via email to