hi,

When we had the data structure as: HashMap<String,String> the following jsp
fragment was able to populate it:
<s:textfield name="map['key']" />

but the same thing is not working with HashMap<String, ArrayList<Stirng> >
when we tried:
<s:textfield name="mapOfList['key']".

We also tried instantiating the object in the action class constructor:
mapOfList = new HashMap<... >();
mapOfList.put("key", new ArrayList());

still no luck.... Using POJOs instead of hashmap would not fit to my
requirements.

any help ???

cheers,
ravi
-- 
View this message in context: 
http://www.nabble.com/HashMap%3C-String%2C-ArrayList%3CString%3E-%3E%3A-Unable-to-populate-the-Array-List-from-JSP-tp16975469p16975469.html
Sent from the Struts - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to