> <tr:iterator value="#{myBean.myDynamicList}" var="myItem" varStatus="rows">
>   <h:inputText binding="#{myItem}" />
> </tr:iterator>

That isn't valid code. There is only one component per tag (barring
usage of the evil c:forEach), so you can't re-bind a component in an
iterator. You can use c:forEach to do this though. It would insert the
multiple components into the tree. You also can use binding on the
parent component and append the children programmatically
(parent.getChildren().addAll(your input text components))

-Andrew

Reply via email to