Hi Robert,
you may have this kind of code:
Form form = getRequest().getEntityAsForm();
List<Parameter> params = form.subList("ConnectedConcepts[][]");
String[][] result = new String[params.size()][10];
for (int i = 0; i< params.size(); i++) {
result[i] = params.get(i).getValue().split(",");
}
The problem is that you need to know by advance the dimensions of the 2d
array.
Best regards,
Thierry Boileau
> this is what firebug says:
>
> http://dl.dropbox.com/u/1266822/array.png
>
> ------------------------------------------------------
> http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447&dsMessageId=2461713
>
>
------------------------------------------------------
http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447&dsMessageId=2461730