jsf 2.0とajaxを使用していますが、ドロップダウンボックスからアイテムを選択すると、showTimeリストからアイテムが表示されます。
xhtmlファイル:
<tr>
<td>Movies:</td>
<td>
<h:selectOneMenu value="#{locationBean.movie}"
disabled="#{locationBean.movieListDisabled}"
id="movieList">
<f:selectItems value="#{locationBean.movies}"/>
<f:ajax render="showTime"/>
</h:selectOneMenu></td>
</tr>
<tr>
<td>Availablity:</td>
<td>
<ui:repeat value="#{locationBean.showTime}" var="item" id="showTime">
<div><h:inputText value="#{item.value}" id="showTime"/></div>
</ui:repeat>
</td>
</tr>
そして、BeanからshowTimingのリストを返します。
このエラーを克服する方法