Hi, i have tried it, looking for the solution in books and google and i can't do this.
i have a select tag in my jsp <s:select list="countries" listkey="nameCountry" listValue="idCountry" multiple="true" size="11"/> in my action i have List countries=new ArrayList(); with getCountries()/setCountries(List countries); I have a country.java with String idCountry=""; String nameCountry=""; with get/setters Can i map all the names and keys of the selected items in the list of my action? I only get a list with the ids of the countries selected, but i cant map the name of the countries selected... :( I have tried List<Country> countries=new ArrayList<Country>(); and doesn't work, do i need a converter? i have tried an annotacion converter and i doesn't work too maybe cos i don't undestand it so much, so please can you help me?? thanks