Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a Struts2 application. On jsp page I use selectbox to populate ArrayList from database:

<s:select name="country" list="countryList" listKey="countryId" listValue="countryName" headerKey="0" headerValue="Country" label="Select country" />

But I need to store in listKey not an id but index of ArrayList. So then I read this index, find the appropriate country in ArrayList and retrieve it. Is it possible?

share|improve this question

1 Answer

up vote 0 down vote accepted

Try using countryList.indexOf(country) as below:

<s:select name="country" list="countryList" listKey="countryList.indexOf(country)" 
                                           listValue="countryName" headerKey="0"  
                                   headerValue="Country" label="Select country"/>
share|improve this answer
Thank you for the help!) – user1788867 Nov 5 '12 at 16:00
@user1788867: Good to know, it was helpful. Please don't forget to accept the answer. – Yogendra Singh Nov 5 '12 at 16:02
Note that while it likely doesn't matter, this is a pretty expensive operation since it will iterate over the list to find the country. IMO it would be better to look it up after submission, performing the lookup only once, or create an index/country list on the Java side, etc. – Dave Newton Nov 5 '12 at 16:04
Or to use an HashMap instead of an ArrayList, and the ID as key... – Andrea Ligios Nov 5 '12 at 16:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.