Hi,
I'm using seam 1.2.1 and JBoss AS 4.0.5,
Here is the selectOneMenu in my page
<tr>
<td>Org Level:</td>
<td>
<s:decorate>
<h:panelGroup>
<h:selectOneMenu value = "#{orgEntry.orgLevel}">
<s:selectItems value="#{orgLevels}" var="orgLevel" label="#{orgLevel.name}" noSelectionLabel="#{orgEntry.orgLevel.name}"/>
</h:selectOneMenu>
</h:panelGroup>
</s:decorate>
</td>
</tr>