I'd use a <h:dataTable> in a composite component with a backing UIComponent which you can bind by componentType attribute of the <composite:interface>. In the backing UIComponent you can then maintain the DataModel and define the actions.
dynamicFieldList.xhtml
<ui:composition
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:cc="http://java.sun.com/jsf/composite"
>
<cc:interface componentType="dynamicFieldList">
<cc:attribute name="list" type="java.util.List" required="true" />
</cc:interface>
<cc:implementation>
<h:dataTable id="table" value="#{cc.model}" var="field">
<h:column><h:outputLabel value="#{field.label}" /></h:column>
<h:column><h:inputText value="#{field.value}" /></h:column>
<h:column><h:commandButton value="remove" action="#{cc.remove}" /></h:column>
</h:dataTable>
<h:commandButton value="add" action="#{cc.add}" />
</cc:implementation>
</ui:composition>
(the <h:inputText> can if necessary be your composite field component)
com.example.DynamicFieldList
@FacesComponent(value="dynamicFieldList") // To be specified in componentType attribute.
@SuppressWarnings({"rawtypes", "unchecked"}) // We don't care about the actual model item type anyway.
public class DynamicFieldList extends UIComponentBase implements NamingContainer {
private transient DataModel model;
@Override
public String getFamily() {
return "javax.faces.NamingContainer"; // Important! Required for composite components.
}
public void add() {
getList().add(new Field("somelabel"));
}
public void remove() {
getList().remove(model.getRowData());
}
public DataModel getModel() {
if (model == null) model = new ListDataModel(getList());
return model;
}
private List getList() { // Don't make this method public! Ends otherwise in an infinite loop calling itself everytime.
return (List) getAttributes().get("list");
}
}
Use it as follows:
<h:form>
<my:dynamicFieldList list="#{bean.fields}" />
</h:form>
with just this
@ManagedBean
@ViewScoped
public class Bean implements Serializable {
private List<Field> fields;
public Bean() {
fields = new ArrayList<Field>();
}
public List<Field> getFields() {
return fields;
}
}
and
public class Field implements Serializable {
private String label;
private String value;
public Field() {
//
}
public Field(String label) {
this.label = label;
}
public String getLabel() {
return label;
}
public void setLabel(String label) {
this.label = label;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
}