Hi there,
I want to iterate over my grouplist and give out the name of each group in a select box.
For this purpose I do the following. The list is actually filled with objects of type “GroupActionForm”. I know it is filled because I have already given its properties out using a layout:collection tag. However, I get the follwing warning:
“Cannot find bean under name groupList”
Here is the code I use:
<html:select name=”GroupActionForm” property=”groupList”>
<html:options collection=”groupList” property=”username”
labelProperty=”username”/>
</html:select>
Thanks for any help