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 firstname, lastName, and street would all be text inputs?
Thanks,
-Luther
