我想在<h:outputText />
中顯示選定值<h:selectOneMenu />
的標籤。如何在<h:outputText>中顯示<h:selectOneMenu>的選定值的標籤?
我有以下的下拉列表,我得到選定的值。
<h:column>
<h:selectOneMenu value="#{bean.selectedCity}">
<f:selectItem itemValue="1" itemLabel="NewYork"/>
<f:selectItem itemValue="2" itemLabel="Washington"/>
</h:selectOneMenu>
</h:column>
我想顯示所選擇的值,但下面只顯示1
或2
。
<h:outputText value="#{bean.selectedCity}" />
我想顯示的標籤NewYork
或Washington
。我怎樣才能做到這一點?
我真的不明白你。發佈一個模型或一些簡單的HTML代碼,說明結果應該如何。 – BalusC 2011-01-26 12:22:45
請提供詳細的問題。 – Krishna 2011-01-26 13:08:25
我只想看看的值。我希望顯示爲。 –
2011-01-26 16:05:16