vote up 1 vote down star

Hi,

Could someone please tell me, how should be the backing bean of a page that shows datatable in datatable. For example: If I want to show the users in the cities, the below code would be the design part of the page, but what about the bean?

<h:form><rich:dataList var="city" value="#{myBean.allCity}">
<h:outputText value="#{city.name}" ></h:outputText>
<rich:dataList var="user" value="#{city.users}">
     <h:outputText value="#{user.name}" ></h:outputText>
</rich:dataList></rich:dataList></h:form>

Thanks.

flag

1 Answer

vote up 1 vote down check

in your City class you should have a method

"public List<User> getUsers()"

where it should return the appropriate list of users you want to list.

It should return User list.

link|flag
thank you so much. – Duygu Jul 1 at 6:32

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.