「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>
両方のコンポーネントのドキュメントには、
「value 属性は、このコンポーネントの現在の値を設定します」と同じことが記載されています。
http://www.jsftoolbox.com/documentation/tomahawk/09-TagReference/tomahawk-selectManyListbox.html
http://www.jsftoolbox.com/documentation/help/12-TagReference/core/f_selectItems.html
ありがとう