On 7/21/06, Remo Liechti <[EMAIL PROTECTED]> wrote:
Does anyone have an Example how to add rows to a HTMLDataTable in a backing bean? I allreads have the setters and getters in the bean, but I don't know how to add data to the HTMLDataTable object.
Generally, you'd add it to your data model, not to the bean.
For me, I always use <dataTable value="#{someBean.someList}"> and it's
just a matter of adding more elements to someList.

