I am having a service, which expects "names" parameter as a List. So in my
html form I have mutliple text field as "names".

How do I get multiple values, I mean the values which we get if using
request.getParameterValues() ?

I tried looking into ofbiz code, I found that we can have fields named
"fieldname_o_N" to get multiple values, but when I use
UtilHttp.parseMultiFormData(parameters), the map is empty, but
UtilHttp.getMultiFormRowCount(request) returns the correct count.

Should I manually get the form data in a java event ?

Note - I am not using Form widgets.

Reply via email to