I have a list with 2 properties name and prefix (from SQL), where name is the language name and prefix is the language identifier composed of 2 letters.
And I want to make something like:
<select>
<option value="en">English</option>
<option value="fr">French</option>
<option value="uk">English UK</option>
</select>
I know how to do that in this way: <s:select list="#{'en':'English', 'fr':'French', 'uk':'English UK'}"/>
But how to display the results if we have a list from database, for example: <s:select list="languages.name"/>
Is is possible in Struts2 s:select tag?
listKeyandlistValue. for details refer to doc. Select-Tag – Umesh Awasthi Feb 13 '12 at 13:24