バッキングBeanにHashMapがあり、複数の選択ボックスを動的にレンダリングしたいと思います。コードは次のとおりです。
<h:selectManyCheckbox
id="id"
value="#{backingBean.value}"
layout="pageDirection"
styleClass="label"
required="true"
requiredMessage="You must select at least...">
<a4j:repeat var="aGroup" items="#{backingBean.map}">
<f:selectItem id="role#{aGroup.value.property1}" itemLabel="#{aGroup.value.property1}" itemValue="#{aGroup.value.property2}" />
<rich:tooltip for="role" value="#{aGroup.value.property5}" />
</a4j:repeat>
</h:selectManyCheckbox>
レンダリングではありません。f:selectItemsタグを使用してレンダリングしていますが、各f:selectItemにrich:tooltipをアタッチする必要があるため、f:selecteItemを手動で作成する必要があります。
何か案は ?
ラヴィ