vote up 0 vote down star

hi,

my form is passing the String name of the country to the action. how can i pass the id of the object country from the combobox to the action?

this is what i have:

s:combobox label="Country" name="country" headerValue="Select" headerKey="1" list="%{countries}" listValue="name"/>

thanks.

flag

80% accept rate

1 Answer

vote up 1 vote down check

You have missed the listKey attribute. If you change it as:

<s:combobox label="Country" name="country" headerValue="Select" headerKey="1"
list="%{countries}" listValue="name" listKey="id"/>

It will probably work.

See http://struts.apache.org/2.0.14/docs/combobox.html for all the attributes available.

link|flag
cheers. it works now. – pigouina Mar 27 at 12:10

Your Answer

Get an OpenID
or

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