Has anybody dealt with a situation, that on the client side (html form) there is one type of field, that exist various times?
Like:
<input id="fileRef1" type="hidden"/>
<input id="fileRef2" type="hidden"/>
....
<input id="fileRefx" type="hidden"/>
so that the DTO would need something like String[] fileRefs;
I'm using spring framework, but I don't see how could I use dataBinder or custom editor for that. Any suggestions please?