• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Paul Clapham
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Roland Mueller
  • Piet Souris
Bartenders:

Iterating multiple dropdowns in struts

 
Greenhorn
Posts: 8
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I have a JSP which has five dropdowns which is repeated 10 times (10 rows) for simultaneous update.I have populated the dropdown values from array of each column using html:select and html:options as :



Similarly for other 4 columns.The arrays are populated in action class as shown in below code:


Similarly for other 4 columns.In Form bean i have 5 arrays for 5 columns and its getter & setter methods.Now,I want to recieve the values selected by user in a List which will have ten objects added for each rows.I have a classs which have 5 variables for each column and its list is in form bean class which will get the values of each 10 rows.I tried to use logic:iterate but it is displaying error that logic:iterate can't be used with select and options.

Can anyone suggest solution for this problem.

Thanks in advance.
Regards,
Anil
reply
    Bookmark Topic Watch Topic
  • New Topic