Re: Rendering Nested Entities

2008-12-12 Thread lutherbaker
ext inputs? > > Thanks, > > -Luther > > -- View this message in context: http://www.nabble.com/Rendering-Nested-Entities-tp20947966p20982615.html Sent from the Tapestry - User mailing list archive at Nabble.com. ---

Rendering Nested Entities

2008-12-10 Thread Luther Baker
Is there a relatively clean way to use a BeanEditForm and get a nested Entities properties to show up as inputs. public class Address { private String street; ... } public class User { private String firstName; private String lastName; private Address address; ... } Where