Sorry had a typo..
Typically if I knew I only had to grab one pre-known set of values, I'd
do something like
// my action form..
private String[] possibleValues;
private String[] values;
// getters and setters..
// my jsp:
<html:select multiple="3" property="values">
<html:options property="possibleValues[${idx}]"/>
</html:select>
Should be:
<html:select multiple="3" property="values">
<html:options property="possibleValues"/>
</html:select>
Collin
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]