Re: question regarding dynamic number of form fields

2013-09-12 Thread Lukasz Lenart
It's because of restrictions in ParametersInterceptor - it doesn't allow keys with spaces as this can be potential malicious code. Check docs [1] and source [2] [1] http://struts.apache.org/development/2.x/docs/parameters-interceptor.html [2] https://svn.apache.org/repos/asf/struts/struts2/trunk/

question regarding dynamic number of form fields

2013-09-12 Thread Christoph Nenning
Dear List, we have some forms in our applications which contain a dynamic number of fields. Therefore we have a map as action member and generate HTTP parameter names like this: https://github.com/wolpi/struts2-samples/tree/master/mapparaspaces Could you please have a look at this? Regard