Hi!

I'm trying to use an event handler to process an Ajax request that sends an
array.

public void handler(@RequestParameter("items") List<String> items)
// do something

It is a GET request and the query string is

items[]=one&items[]=two

Doesn't work :-(

If I do

public void handler(@RequestParameter("item") String item)

and the query string is

item=one

it works like a charm.

Stephan

-- 
View this message in context: 
http://tapestry.1045711.n5.nabble.com/RequestParameter-items-List-String-items-tp3382178p3382178.html
Sent from the Tapestry - User mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org

Reply via email to