Re: beaneditform with option lists of objects

2016-09-22 Thread Barry Books
You will need to build a select model for your list http://tapestry.apache.org/using-select-with-a-list.html I would create an Interface and have the child implement it so you can create a generic one Then create an edit block out of that code. This will allow the BeanEditor to edit this kind of

beaneditform with option lists of objects

2016-09-21 Thread Paul Stanton
Hi all, I have tables: Parent -- parent_id child_id Child --- child_id and ORM entity: Parent --- Long Id Child child (oneToOne in this case, joinColumn child_id) Child is another ORM entity. Child could be one of many options from the database. I wo