I currently am displaying rows in a DataTable. These represent a denormalized, flattened view of records from 3 tables: Requests, Queues, Events. A request can have multiple queue records. Each queue can have multiple events. So, we have records displaying like this:
Request ID Queue ID Event ID Other Columns.... 1 1 1 detail... 1 1 2 detail... 1 2 1 detail... 2 1 1 detail... I would like to display a repeating view of the Requests with an expandable view of the children queue records under each request. So, if you click the icon, all the queue records would pop open under the request record but all the other request records would remain visible. Essentially, a repeating view that presents another repeating view between rows to display child records. Each child record would have a link or button to display a detail page which would show the overall information for the Request/Queue combination along with a DataTable of Events for that Queue record. How to wrap a Data Table or other repeater within another repeater in Wicket? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/How-to-wrap-a-Data-Table-or-other-repeater-within-another-repeater-in-Wicket-tp4661354.html Sent from the Users forum mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
