<ui:table> and JavaBeans collection
How to use this tag with JavaBeans collection?
I use ObjectListDataProvider and DefaultTableDataProvider, but table is empty.
Example of my code:
...
List collection = new ArrayList();
for (int i = 0; i < 10; i ++ ) {
MyBean myBean = new MyBean();
myBean.setName("bla-bla-bla");
myBean.setDescription("tra-ta-ta");
collection.add(myBean);
objectListDataProvider.addObject(myBean);
}
...
next step (JSP code):
<ui: table ...>
<ui:tableRowGroup...sourceData="#{page1.objectListDataProvider}...>
...
</ui:tableRowGroup>
</ui:table>
it does not work.
Any ideas...">

