Hi everybody,
I'm getting a little headache at the moment because of my little test project. I'm writing a small test application using Hibernate and since yesterday also DWR. I already managed to request Collections from Hibernate and display them on the client with this lines:
<convert converter="hibernate3" match="com.topdesk.training.accounting.hibernate.pojos.Tag" />
<convert converter="collection" match="java.util.Collection"/>
The problem now is that i have in some POJOS collections of other POJOS.
example:
1 folder has zero or more sheets
1 sheet has zero or more tags
(which are stored in a collection)
When i request all sheets from the server i return a collection of sheets. That works perfectly. I want to display all sheets in a simple HTML table. Per sheet i also want to list all tags that belong to that sheet. The problem now is that the collection that holds all the tags per sheet is null. Is there another way (another option) that i missed to let DWR also return the collections that belong to one object?
Thanks a lot already for DWR. It's a really nice tool.