IceFaces DropDown中的默认值

时间:2014-10-02 11:45:01

标签: jsf default-value

我有一个带代码的jspx页面:

<ice:outputText id="regionTitle" value="#{msg['tc.report.region']} *"/>
<ice:panelGroup>
    <ice:panelGrid  columns="2" 
                    columnClasses="column90, column10" 
                    width="100%">
        <ice:selectInputText id="regionInput" 
                             binding="#{frm_4_20Bean.regionInput}" 
                             width="100%" 
                             value="#{frm_4_20Bean.regionSI.selectedItemKey}" 
                             valueChangeListener="#{frm_4_20Bean.regionSI.itemCodeValueChanged}">
            <f:selectItems id="regionList" 
                           value="#{frm_4_20Bean.regionSI.codeItems}" />
        </ice:selectInputText>
        <ice:commandLink actionListener="#{frm_4_20Bean.regionController.openPopup}" 
                         onclick="hideAllSelectsIE6();">
            <ice:graphicImage   value="/img/open.gif" 
                                alt="show popup" 
                                style="border:none"/>
        </ice:commandLink>
    </ice:panelGrid>
</ice:panelGroup>

我想知道如何设置<ice:selectInputText />的默认值。请给我看一些示例代码。

0 个答案:

没有答案