I have an arraylist of string private ArrayList s开发者_JAVA百科trarray = new ArrayList(); . I have to map this String arraylist to dropdown(s:select). give me the syntax for s:select tag to display strarray as dropdown.
Have you read the docs?
Anyway:
<s:select list="strarray" name="mystr" />
精彩评论