tags:

views:

10

answers:

1

I have an arraylist of string private ArrayList strarray = 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.

+1  A: 

Have you read the docs?

Anyway:

<s:select list="strarray" name="mystr" /> 
leonbloy