我正在查看一些現有的代碼,並好奇'h:selectManyListbox'&'t:selectItems'value屬性之間的差異是什麼?h:selectManyListbox&t:selectItems的值屬性差異
<h:selectManyListbox value="#{MyBean.deSelectedFields}" size="10">
<t:selectItems id="selectItemsId" value="#{MyBean.allSelectedFields}" var="item" itemValue="#{item.value}" itemLabel="#{item.label}" />
</h:selectManyListbox>
兩個組件的文件指出同樣的事情:
「屬性的值設置此組件的當前值。」
http://www.jsftoolbox.com/documentation/tomahawk/09-TagReference/tomahawk-selectManyListbox.html
http://www.jsftoolbox.com/documentation/help/12-TagReference/core/f_selectItems.html
由於
有道理,謝謝BalusC。 – 2011-03-04 14:51:26
不客氣。 – BalusC 2011-03-04 14:51:47