This is my first cut at Struts, so hopefully my post makes sense...
I have rendered a table that contains 3 r/o columns and one editable droplist column. I am able to render all data into the four columns, including the droplist options and the current selection. My problem is that I am unable to capture the modifcations to the droplist.
How are these droplist "events" captured? Below is the jsp codelet to render the droplist and data:
<td><center><html:select name="beans" property="foo.status.name">
<bean:define id="fooStatusListBean" name="fooStatusForm"
property="fooStatusList" type="java.util.ArrayList"/>
<html:options collection="fooStatusListBean" property="name"
labelProperty="description"/>
</html:select></center></td>
My ActionForm has a "beans" Collection attribute that is used to populate the table rows. I have not figured a way to capture droplist modifications to the "foo.status.name" attribute for each individual bean.
Any help is appreciated. Thanks!
Mike
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]