I have a problem using the DataList component. I would like to use input components within it, but the model isn't updated at all. I use a List a the DataList value.
If I use a DataTable instead everything works fine.
Is this a bug, or does the DataList component not work with input components (I guess it should, because it is a special DataTable) ?
here an example - does NOT work:
<h:form>
<x:dataList id="foo" var="item"
value="#{myBean.items}" >
<h:inputText value="#{item.value}" />
</x:dataList>
<h:commandButton action="" />
</h:form>
but this works:
<h:form>
<h:dataTable id="foo" var="item"
value="#{myBean.items}" >
<h:inputText value="#{item.value}" />
</h:dataTable>
<h:commandButton action="" />
</h:form>
- DataList does not work correctly like a DataTable with i... mathias . werlitz
- Re: DataList does not work correctly like a DataTab... Brandon Goodin
- Re: Re: DataList does not work correctly like a... mathias . werlitz
- Re: Re: DataList does not work correctly li... Brandon Goodin
- Antwort: Re: Re: DataList does not work... mathias . werlitz
- Re: Re: Re: DataList does not work... Brandon Goodin
- Antwort: Re: Re: Re: DataList ... mathias . werlitz
- Re: Re: Re: Re: DataList d... Martin Marinschek
- Re: Re: Re: Re: DataList d... Brandon Goodin

