You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@struts.apache.org by "Rea, Ron" <re...@coramhc.com> on 2002/10/18 23:06:59 UTC

nested:select default value

Hello,
 
I need to pre-set the value displayed in a drop-down via the <nested:select>
tag.  Although the property used in the nested select tag has a value (I
wrote it out in the column next to the dropdown column to verify this), the
dropdown is not being preselected.  Any ideas:
 
Example: (processResp is "PMA")
<nested:select property="processResp"><size="1">
            <html:option value=""></html:option>
            <html:option value="CMPL">CMPL</html:option>
            <html:option value="OVRD">OVRD</html:option>
            <html:option value="RDA">RDA</html:option>
            <html:option value="BMA">BMA</html:option>
            <html:option value="PMA">PMA</html:option>
            <html:option value="DEND">DEND</html:option>
</nested:select>