this is my bean package bean; import java.util.*; public class DataOre { List giorno=new ArrayList(); public DataOre(){ giorno = new ArrayList(); giorno.add("Sunday"); giorno.add("Monday"); giorno.add("Tuesday"); giorno.add("Wednesday"); giorno.add("Thursday"); giorno.add("Friday"); giorno.add("Saturday"); } }
anf in the jsp page there is <%...@page import="bean.DataOre"%> <s:select headerKey="1" headerValue="seleziona" list="DataOre" listValue="giorno" /> -- View this message in context: http://www.nabble.com/please-help-me-tp22933522p22933565.html Sent from the Struts - User mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands, e-mail: user-h...@struts.apache.org